5 lines
107 B
Text
5 lines
107 B
Text
print "How many seconds should I sleep? "
|
|
sec = number input
|
|
print "Sleeping ..."
|
|
sleep sec
|
|
print "Awake!"
|