#include<cstdio> int main() { int a,b,c; scanf("%d %d",&a,&b); if(a<b) c=b-a; else c=24-a+b; printf("O JOGO DUROU %d HORA(S)",c); return 0; }