https://pintia.cn/problem-sets/994805260223102976/problems/994805295203598336
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int c1, c2;
cin >> c1 >> c2;
int sec = round((c2 - c1) / 100.0);
int h = sec / 3600;
int m = (sec - h * 3600) / 60;
int s = sec - h * 3600 - m * 60;
printf("%02d:%02d:%02d", h, m, s);
return 0;
}