repo.or.cz
/
siwg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Tree2
[siwg.git]
/
Connect6
/
dummy.cpp
blob
517d773b57c55acc729b393be802510b9995a9b7
1
#include <stdio.h>
2
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
;
11
}
12
printf
(
"I'm closed!
\n
"
);
13
return
0
;
14
}