-
Notifications
You must be signed in to change notification settings - Fork 14
/
10282.cpp
62 lines (56 loc) · 1.1 KB
/
10282.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
52
53
54
55
56
57
58
59
60
61
62
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <queue>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <complex>
#include <cstdlib>
#include <cctype>
#include <string>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <limits>
#include <ctime>
using namespace std;
typedef long long int64;
typedef unsigned long long uint64;
#define FOI(I, A, B) for (I=A; I<=B; I++)
#define FOD(I, A, B) for (I=A; I>=B; I--)
int main(){
//freopen("testI.txt", "r", stdin);
//freopen("testO.txt", "w", stdout);
map<string, string> dict;
map<string, string>::iterator it;
string str;
while( getline(cin, str) ){
if( str == "" )
break;
stringstream ss;
string key, val;
ss << str;
ss >> val >> key;
dict[key] = val;
}
while( cin >> str ){
it = dict.find(str);
if( it != dict.end() )
cout << dict[str] << endl;
else
cout << "eh" << endl;
}
return 0;
}