Convert all test programs from CPP to C
[gruntmaster-daemon.git] / t / problems / increment / tests / ac / prog.c
1 #include<stdio.h>
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.019217 seconds and 4 git commands to generate.