repo.or.cz
/
and.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding some more judges, here and there.
[and.git]
/
NEERC
/
yield
/
yield_re_cpp.cpp
blob
5a8d9715d70368ea408061d0a66eca934984b7b9
1
#include <fstream>
2
#include <utility>
3
4
using namespace
std
;
5
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
;
13
}