Advertisement
ydpetkov

sum_seconds

Jul 12th, 2022
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. first_time = int(input())
  2. second_time = int(input())
  3. third_time = int(input())
  4.  
  5. total_time_sec = first_time + second_time + third_time
  6.  
  7. minutes = total_time_sec // 60
  8. seconds = total_time_sec % 60
  9.  
  10. if seconds < 10:
  11. print(f'{minutes}:0{seconds}')
  12. else:
  13. print(f'{minutes}:{seconds}')
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement