Sunday, June 12, 2016

SOLUTION OF URI 1047


//   question of uri 1047 Game Time with Minutes
// 1047  (Mahmud_Jamil) BRUR





#include <stdio.h>
int main()
{
    int a,b,c,d,e,f;
    scanf("%d %d %d %d", &a,&c,&b,&d);

    e=b-a;

    if(e<0)
    {
        e=24+(b-a);
    }

     f=d-c;
if(f<0)

{
     f=60+(d-c);
 e--;
}

    if(a==b && c==d)

    {
        printf("O JOGO DUROU 24 HORA(S) E 0 MINUTO(S)\n");
    }
    else {
            printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n",e,f);
    }
    return 0;
}