mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 16:20:27 +08:00
11 lines
130 B
C++
11 lines
130 B
C++
#include <iostream>
|
|
using namespace std;
|
|
int main(){
|
|
int a;
|
|
int b;
|
|
int c;
|
|
cin >>a>>b>>c;
|
|
cout <<a*60*60+b*60+c;
|
|
return 0;
|
|
}
|