Untitled

 avatar
unknown
python
a year ago
176 B
5
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