CodeForces 622B The Time

水题。

#include <stdio.h>
#include <algorithm>
#include <string.h>
#include <queue>
#include <stack>
#include <map>
#include <vector>
using namespace std;

int h,m,a;

int main()
{
    scanf("%d:%d",&h,&m);
    scanf("%d",&a);
    int mm=(h*60+m+a)%(24*60);
    printf("%02d:%02d\n",mm/60,mm%60);
    return 0;
}

 

posted @ 2016-02-15 10:03  Fighting_Heart  阅读(127)  评论(0编辑  收藏  举报