Хвилини в години

Користувач вводить кількість хвилин, вивести скільки це в годинах і днях

Input:

1

Expected output:

0.0166666667 0.000694444444

Input:

0

Expected output:

0 0

Input:

360

Expected output:

6 0.25

Input:

180

Expected output:

3 0.125

minutes = int(input()) hours= minutes/60 days = minutes/(60*24) print(hours) print(minutes)