fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(void)
  6. {
  7. int h, m;
  8. cin >> h >> m;
  9.  
  10. if ((m - 45) < 0)
  11. {
  12. m = 60 - (45 - m);
  13.  
  14. if ((h - 1) < 0)
  15. h = 23;
  16. else
  17. h--;
  18. }
  19. else
  20. m -= 45;
  21.  
  22. cout << h << " " << m;
  23. return 0;
  24. }
Success #stdin #stdout 0s 4404KB
stdin
10 10
stdout
9 25