-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10282 Babelfish.cpp
51 lines (51 loc) · 1.25 KB
/
10282 Babelfish.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <cstdio>
#include <cmath>
#include <cstring>
#include <cctype>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
#include <map>
#include <limits>
#define iter(a,b,c,d) for(a = b; a < c; a+=d)
#define ited(a,b,c,d) for(a = b; a > c; a-=d)
#define li long int
#define uli unsigned li
#define ll long li
#define ull unsigned ll
#define si(a) scanf("%d",&a)
#define sli(a) scanf("%ld",&a)
#define sll(a) scanf("%lld",&a)
#define slu(a) scanf("%llu",&a)
#define sf(a) scanf("%f",&a)
#define slf(a) scanf("%lf",&a)
#define PI 3.1415926
using namespace std;
int main()
{
/*freopen("1in.txt", "r", stdin);
freopen("1out.txt", "w", stdout);*/
map<string,string> dict;
string temp,temp2;
while(getline(cin,temp) && !temp.empty())
{
/*cin >> temp;
cout << "t1";
if(temp.compare() == 0) break;
cin >> temp2;
cout << "t2";*/
temp2 = temp.substr(temp.find(" ") + 1);
temp.erase(temp.find(" "));
dict.insert(pair<string,string>(temp2,temp));
}
while(getline(cin,temp))
{
if(temp.compare("") == 0) break;
temp2 = dict[temp];
if(temp2.compare("") == 0) puts("eh");
else cout << temp2 << endl;
}
return 0;
}