13 lines
165 B
Plaintext
13 lines
165 B
Plaintext
void :: main() {
|
|
int x;
|
|
|
|
x = 0;
|
|
while (x < 10) {
|
|
print x;
|
|
x = x + 1;
|
|
}
|
|
|
|
for(x = 20; x > 10; x = x - 1) {
|
|
print x;
|
|
}
|
|
} |