#include using namespace std; int main(){ int a,t,m; cin >> a; t = 10 + a / 100; m = 0 + (a % 100) * 60 / 100; printf("%02d:",t); printf("%02d",m); }