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