#include<iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a==b) cout<<"O JOGO DUROU 24 HORA(S)"<<endl;
else
{
if(a>b) printf("O JOGO DUROU %d HORA(S)",(24-a)+b);
else printf("O JOGO DUROU %d HORA(S)",b-a);
}
return 0;
}