fork download
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. long long s;
  6.  
  7. int main()
  8. {
  9. ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
  10. cin >> s;
  11. long long phut = s / 60;
  12. long long gio = phut / 60;
  13. cout << gio << ' ' << phut % 60 << ' ' << s % 60;
  14. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
0 0 0