```cpp
include[HTML_REMOVED]
include[HTML_REMOVED]
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if(a>b){
printf(“O JOGO DUROU %d HORA(S)”,24-a+b);
}
else if(a<b){
printf(“O JOGO DUROU %d HORA(S)”,b-a);
}
else
printf(“O JOGO DUROU 24 HORA(S)”);
return 0;
}