#include #define exrep(i, a, b) for(long long i = a; i <= b; i++) #define rep(i,n)for(long long i=0;i<(long long)(n);i++) #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() using namespace std; typedef unsigned long long ull; typedef long long ll; typedef long double ld; typedef pair P; typedef vector vl; typedef vector vs; typedef vector

vp; typedef vector > vvl; typedef vector > vvp; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } const ll MOD=1e9+7; const ll INF=1e18; const int MAX=510000; const double pi=acos(-1); int dx[4]={1,0,-1,0}; int dy[4]={0,1,0,-1}; int main(){ cin.tie(0); ios::sync_with_stdio(false); int a; cin >> a; a=(a*60)/100; int h=10,m=0; h+=a/60; m=a%60; cout << h << ":"; if(m<10)cout << 0; cout <