9 lines
96 B
C
9 lines
96 B
C
#include <stdio.h>
|
|
|
|
int main(){
|
|
for(int i = 0; i < 2; i++){
|
|
printf("%d", i);
|
|
}
|
|
return 0;
|
|
}
|