1function f(n) { while ((n /= 10) > 1)  print n }
2function g(n) { print "g", n }
3{ f($1); g($1) }
4