Advertisement
Rayk

Untitled

Apr 21st, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. hours = int(input())
  2. minutes = int(input())
  3. minutes = minutes + 15
  4.  
  5. if minutes >= 60:
  6. hours += 1
  7. minutes -= 60
  8.  
  9. if hours == 24:
  10. hours = 0
  11.  
  12. if minutes < 10:
  13. print(f'{hours}:0{minutes}')
  14. else:
  15. print(f'{hours}:{minutes}')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement