M(k){ var i, j; i = 1; j = i; while(i <= k) { j = i; while(j > 0) { print j; j = j - 1; } println; i = i + 1; } } main() { var a; a = 9; M(a); }