11 lines
101 B
C
11 lines
101 B
C
#include "syscall.h"
|
|
|
|
int main()
|
|
{
|
|
int n;
|
|
for (n = 0; n < 4; n++) {
|
|
PrintInt(1);
|
|
}
|
|
return 0;
|
|
}
|