9 lines
135 B
C
9 lines
135 B
C
#include "syscall.h"
|
|
|
|
int main(){
|
|
do {
|
|
int number;
|
|
GetInt(&number);
|
|
PutInt(number);
|
|
} while(1 == 1);
|
|
}
|