da549a7a5964df3127bf0a614092c7bf9b6d348f
[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.020826 seconds and 3 git commands to generate.