10 lines
103 B
Plaintext
10 lines
103 B
Plaintext
prog {
|
|
int x = 1;
|
|
int y = 1;
|
|
while (y < 10) {
|
|
x = (x + 2);
|
|
y = (y + 1);
|
|
}
|
|
print x;
|
|
}
|