14 lines
119 B
C
14 lines
119 B
C
#include "syscall.h"
|
|
|
|
int
|
|
main()
|
|
{
|
|
int n;
|
|
for (n=15;n<=19;n++){
|
|
|
|
PrintInt(n);
|
|
}
|
|
Halt();
|
|
}
|
|
|