5 lines
109 B
Smalltalk
5 lines
109 B
Smalltalk
'Enter a number: ' display.
|
|
a := stdin nextLine asInteger.
|
|
|
|
'Enter a string: ' display.
|
|
b := stdin nextLine.
|