blob: a5be10bee31a4bdebf8e524bafb24d06062496cd [file] [log] [blame]
{
x = $1
while (x > 1) {
print x
x = x / 10
}
}