6 lines
133 B
Text
6 lines
133 B
Text
|
|
print("Please enter sleep duration in seconds: ")
|
||
|
|
input = int(readline(STDIN))
|
||
|
|
println("Sleeping...")
|
||
|
|
sleep(input)
|
||
|
|
println("Awake!")
|