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
Removing uneeded file.
[and.git]
/
PC^2
/
pc2judge
/
execute
/
ser.cpp
blob
deb842abeed72368a7a345c34b15cdaea991c21a
1
#include <iostream>
2
3
using namespace
std
;
4
5
int
main
(){
6
int
n
;
7
while
(
cin
>>
n
&&
n
){
8
cout
<<
n
+
1
<<
endl
;
9
}
10
cout
<<
endl
;
11
return
0
;
12
}