14 lines
197 B
Python
14 lines
197 B
Python
|
|
most = 14
|
||
|
|
ebreszto = 51
|
||
|
|
nap = 0
|
||
|
|
ebresztes = most + ebreszto
|
||
|
|
a = True
|
||
|
|
while a:
|
||
|
|
if(ebresztes > 24):
|
||
|
|
ebresztes -= 24
|
||
|
|
nap += 1
|
||
|
|
else:
|
||
|
|
a = False
|
||
|
|
|
||
|
|
print(ebresztes)
|