提交时间:2025-03-22 20:18:55

运行 ID: 313768

t=int(input()) d=t//86400 h=t%86400//3600 m=t%3600//60 s=t%60//1 print(f"{t}秒={d}天{h}小时{m}分钟{s}秒")