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