Problem P: 小鱼的游泳时间

Problem P: 小鱼的游泳时间

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

小鱼从 时 一直游泳到当天的 时 ,请你帮小鱼计算一下,它这天一共游了多少分钟呢?


#include<cstdio>
using namespace std;
int main() {
    int a, b, c, d, e, f, delta;
    scanf(________);
    delta = _____ ;
    e = _______;
    f = _______ ;
    printf("%d %d", e, f);
    return 0;
}

Input

一行内输入4个整数,分别表示a, b, c, d

Output

一行内输出 个整数 和 f,用空格间隔,依次表示小鱼这天一共游了多少小时多少分钟。

其中表示分钟的整数 应该小于 60

Sample Input Copy

12 50 19 10

Sample Output Copy

6 20

HINT

样例1解释:

12:5019:10经过了6小时20分钟