Untitled
unknown
python
2 years ago
176 B
9
Indexable
if __name__ == '__main__':
a = int(input())
hours = a // 60
minutes = a % 60
result = str(hours) + 'h' + ' ' + str(minutes) + 'min'
print(result)
Editor is loading...
Leave a Comment