9 lines
87 B
C
9 lines
87 B
C
|
#include <stdio.h>
|
||
|
int main(){
|
||
|
int c = 0;
|
||
|
while(1){
|
||
|
c = getchar();
|
||
|
}
|
||
|
return 0;
|
||
|
}
|