样例输入
2 41
样例输出
02:41
12 2
12:02
解题代码
a,b=map(int,input().split()) print('{:0>2}:{:0>2}'.format(a,b))