Initial commit
[gruntmaster-daemon.git] / t / problems / increment / tests / ac / prog.cpp
1 #include<cstdio>
2
3 int main(void){
4 for(int i=0;i<100;i++){
5 int x;
6 scanf("%d", &x);
7 printf("%d\n", x + 1);
8 fflush(stdout);
9 }
10
11 return 0;
12 }
This page took 0.021332 seconds and 5 git commands to generate.