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