12 lines
107 B
C
12 lines
107 B
C
#include "syscall.h"
|
|
|
|
int
|
|
main()
|
|
{
|
|
int n;
|
|
for (n = 0; n < 5; n++) {
|
|
PrintInt(2);
|
|
}
|
|
return 0;
|
|
}
|