14 lines
132 B
C
14 lines
132 B
C
|
#define Q 113
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int c;
|
||
|
while (c != 'q') {
|
||
|
|
||
|
c = getchar();
|
||
|
printf("%d\n",c);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|