-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA.cpp
More file actions
31 lines (31 loc) · 672 Bytes
/
A.cpp
File metadata and controls
31 lines (31 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <bits/stdc++.h>
#define ll long long
const ll mod = 1e9 + 72321;
using namespace std;
#define Speedo ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#include <bits/stdc++.h>
#define all(v) v.begin(),v.end()
void solve()
{
string s;
while(getline(cin,s))
{
if(s=="Is it rated?")
{
cout<<"NO"<<endl;
}
else{
cout<<"YES"<<endl;
}
}
}
int main()
{
Speedo;
int t;
t=1;
//cin>>t;
while(t--){
solve() ;
}
}