今天是第几天
a = eval(input()) b = eval(input()) c = eval(input()) if (a % 4 == 0 and a % 100 != 0) or a % 400 == 0: mouth = [0,31,60,91,121,152,182,213,244,274,305,335] sum = mouth[b-1] d = sum + c print('{0}年{1}月{2}日是{0}年第{3}天'.format(a,b,c,d)) else: mouth = [0,31,59,90,120,151,181,212,243,273,304,334] sum = mouth[b-1] d = sum + c print('{0}年{1}月{2}日是{0}年第{3}天'.format(a,b,c,d))