%!
%total of a seria of number
/Times-Roman findfont
20 scalefont
setfont
/newline {
10 currentpoint 20 sub exch pop moveto
} def
/printN {
10 string cvs show
} def
/space {
currentpoint exch 10 add exch moveto
} def
/printNln {
printN newline
} def
/println {
show newline
} def
10 700 moveto
(line 1) println
2 printN space (Second line) println
3 printNln
4 printNln
true printNln
showpage