0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2022-05-09 17:13:35 +08:00
parent 1bb7808029
commit 7dbd0d35af
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

17
AcWing/667/667.cpp Normal file
View File

@ -0,0 +1,17 @@
#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;
}