Adding some more judges, here and there.
[and.git] / NEERC / yield / yield_re_cpp.cpp
blob5a8d9715d70368ea408061d0a66eca934984b7b9
1 #include <fstream>
2 #include <utility>
4 using namespace std;
6 int main() {
7 ifstream in("yield.in");
8 ofstream out("yield.out");
9 pair<int,int> p;
10 in >> p.first >> p.second;
11 out << (p.first + p.second) << endl;
12 return 0;