Commit 90b0e399 by BellCodeEditor

save project

parent c5205245
Showing with 10 additions and 5 deletions
n=int(input())
h=a//3600
m=(a%3600)//60
s=(a%3600)%60
for i in range(1,10):
for j in range(i,i+1):
print(j,'*',i,'=',(j*i),end=' ')
print()
\ No newline at end of file
a=int(input())
h=a//3600
m=(a%3600)//60
s=(a%3600)%60
print(h,m,s)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment