RosettaCodeData/Task/Sleep/EasyLang/sleep.easy
2023-10-02 18:11:16 -07:00

5 lines
107 B
Text

print "How many seconds should I sleep? "
sec = number input
print "Sleeping ..."
sleep sec
print "Awake!"