0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 00:45:26 +00:00
OI-codes/AcWing/667/667.cpp

18 lines
255 B
C++

#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int a, b;
int main() {
std::ios::sync_with_stdio(false);
cin >> a >> b;
cout << "O JOGO DUROU " << b - a + 24 * (a >= b) << " HORA(S)" << endl;
return 0;
}