[READ-ONLY] Mirror of https://github.com/shuuji3/competitive-programming. 馃洬 Codes submitted to competitive programming platforms
aizu-online-jadge aoj atcoder hackerrank leetcode
0

Configure Feed

Select the types of activity you want to include in your feed.

1s = int(input()) 2 3second = s % 60 4s = s // 60 5min = s % 60 6hour = s // 60 7 8print(f'{hour}:{min}:{second}')