View difference between Paste ID: jfYcmkYQ and XmgFiG9L
SHOW: | | - or go back to the newest paste.
1
s=raw_input("Enter: ")
2
b=s%60
3
c=(s/60)%60
4
d=((s/60)/60)%24
5-
f=((s/60)/60)/24
5+
f=((s/60)/60)/24
6
print("Days: "), f
7
print("Hours: "), d
8
print("Minutes: "), c
9
print("Secnds: "), b