提交时间:2025-03-23 08:59:42
运行 ID: 313805
t=int(input()) d=t//86400 h=t%86400//3600 m=t%3600//60 s=t%60//1 print("%d秒=%d天%d小时%d分钟%d秒" % (t,d,h,m,s))