7 lines
146 B
Python
7 lines
146 B
Python
|
|
import time
|
||
|
|
|
||
|
|
seconds = float(raw_input())
|
||
|
|
print "Sleeping..."
|
||
|
|
time.sleep(seconds) # number is in seconds ... but accepts fractions
|
||
|
|
print "Awake!"
|