9 lines
144 B
C
9 lines
144 B
C
#include "syscall.h"
|
|
|
|
int main(){
|
|
do {
|
|
int number = GetInt();
|
|
PutInt(number);
|
|
PutChar('\n');
|
|
} while(1 == 1);
|
|
}
|