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): a=int(input())
for j in range(i,i+1): h=a//3600
print(j,'*',i,'=',(j*i),end=' ') m=(a%3600)//60
print() s=(a%3600)%60
\ No newline at end of file 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