10 lines
102 B
C
10 lines
102 B
C
#include "syscall.h"
|
|
|
|
int main() {
|
|
int n;
|
|
for (n = 9; n > 5; n--)
|
|
PrintInt(n);
|
|
return 0;
|
|
}
|
|
|