-
Notifications
You must be signed in to change notification settings - Fork 2
/
Facebook Reacts.cpp
37 lines (34 loc) · 974 Bytes
/
Facebook Reacts.cpp
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
32
33
34
35
36
37
#include<bits/stdc++.h>
#define ll long long
#define ull unsigned long long
#define pb push_back
#define fastread() (ios_base:: sync_with_stdio(false),cin.tie(NULL));
using namespace std;
int main()
{
fastread();
string s;
cin>>s;
if(s[0] == 'L' && s[1] == 'i' && s[2] == 'k' && s[3] == 'e'){
cout<<"(y)"<<endl;
}
else if(s[0] == 'L' && s[1] == 'o' && s[2] == 'v' && s[3] == 'e'){
cout<<"<3"<<endl;
}
else if(s[0] == 'C' && s[1] == 'a' && s[2] == 'r' && s[3] == 'e'){
cout<<"^_<3_^"<<endl;
}
else if(s[0] == 'H' && s[1] == 'a' && s[2] == 'h' && s[3] == 'a'){
cout<<":p"<<endl;
}
else if(s[0] == 'W' && s[1] == 'o' && s[2] == 'w'){
cout<<":O"<<endl;
}
else if(s[0] == 'S' && s[1] == 'a' && s[2] == 'd'){
cout<<":'("<<endl;
}
else{
cout<<">_<"<<endl;
}
return 0;
}