#include <iostream> 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 printf("O JOGO DUROU %d HORA(S)",b-a); return 0; }