0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-08-02 11:01:39 +08:00 committed by Baoshuo Ren
parent 021c141451
commit 33bdf7d748
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

10
AcWing/654/654.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int a;
cin >> a;
cout << a / 3600 << ':' << a % 3600 / 60 << ':' << a % 60 << endl;
return 0;
}