Advertisement
veronikaaa86

03. Time + 15 Minutes

Jul 10th, 2022
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. hours = int(input())
  2. minutes = int(input())
  3.  
  4. minutes = minutes + 15
  5.  
  6. if minutes > 59:
  7. hours = hours + 1
  8. minutes = minutes - 60
  9.  
  10. if hours > 23:
  11. hours = 0
  12.  
  13. if minutes > 9:
  14. print(f"{hours}:{minutes}")
  15. else:
  16. print(f"{hours}:0{minutes}")
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement