#include<bits/stdc++.h>
using namespace std;
int main(){
int x,y;
while(cin>>x>>y){
int h,m;
h=x+2;
m=y+30;
if(m>=60) h++, m-=60;
if(h>=24) h-=24;
printf("%02d:%02d\n",h,m);
}
return 0;
}
python 版的,若有更好的可以回復喔!
r=(input().split())
h=int(r[0])
m=int(r[1])
h=h+2
m=m+30
if (m>=60):
m=m-60
h=h+1
if (h>=24):
h=h-24
if (h<10 and m<10):
print("0"+str(h)+":0"+str(m))
elif (h>=10 and m<10):
print(str(h)+":0"+str(m))
elif (h<10 and m>=10):
print("0"+str(h)+":"+str(m))
else:
print(str(h)+":"+str(m))