Tree2
[siwg.git] / Connect6 / dummy.cpp
blob517d773b57c55acc729b393be802510b9995a9b7
1 #include <stdio.h>
3 int main() {
4 char c;
5 while (true) {
6 scanf("%c", &c);
7 printf("%c", c);
8 fflush(stdout);
9 if (c == 'x')
10 break;
12 printf("I'm closed!\n");
13 return 0;