8 lines
92 B
Plaintext
8 lines
92 B
Plaintext
|
void :: main () {
|
||
|
|
||
|
int x;
|
||
|
|
||
|
for(x = 20; x > 10; x = x - 1) {
|
||
|
print x;
|
||
|
}
|
||
|
}
|