This commit is contained in:
2023-06-23 23:10:04 +02:00
parent 6ff95a7f83
commit ab487f6d40

7
spavanac.py Normal file
View File

@@ -0,0 +1,7 @@
h, m = map(int, input().split())
if m < 45:
h = (h - 1) % 24
m = (m - 45) % 60
print(f"{h} {m}")