提交时间:2026-05-29 19:59:00

运行 ID: 442100

#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<a*3600<<endl; cout<<b*60<<endl; cout<<c<<endl; cout<<a*3600+b*60+c; return 0; }