14 lines
132 B
C
Raw Normal View History

2016-07-21 10:22:47 -07:00
#define Q 113
#include <stdio.h>
int main()
{
int c;
while (c != 'q') {
c = getchar();
printf("%d\n",c);
}
return 0;
}