#include <stdio.h>
struct time
{
int hour;
int minute;
int second;
};
int main()
{
struct time t;
int add;
scanf("%d:%d:%d", &t.hour, &t.minute, &t.second);
scanf("%d", &add);
t.second = t.second + add;
if (t.second >= 60)
{
t.minute++;
t.second = t.second - 60;
}
if (t.minute >= 60)
{
t.hour++;
t.minute = t.minute - 60;
}
if (t.hour > 23)
{
t.hour = t.hour - 24;
}
printf("%02d:%02d:%02d", t.hour, t.minute, t.second);
return 0;
}