8 lines
50 B
Plaintext
8 lines
50 B
Plaintext
|
{
|
||
|
x = $1
|
||
|
while (x > 1) {
|
||
|
print x
|
||
|
x = x / 10
|
||
|
}
|
||
|
}
|