a = float(input ("Write down the time of maghrib "))
b = float(input("Write down the time of fajr "))
#Antalet timmar i minuter respektivt minuter i heltal för maghrib
c = (int(a)) *60
d = ((a%1) *100)
#Antalet timmar för fajr multiplicerat för minuterna respektivt antalet fajrs minuter
e = (int (b) +24) *60
f = int((b%1) *100)
#Hur många minuter det är från maghrib till isha /3
g = (e+f-c-d)/3
#timmen för slut 1/3
h = int((g+c+d)/60)
i = (((g)/60)%1)
j= int((i*60)+d)
jag = j
if j > 59:
jag = j-60
j = j-60
if j > 9:
print(f'The time for the end of the first third of the night is {h}:{jag}')
if j < 1:
jag = "00"
j = j+11
print(f'The time for the end of the first third of the night is {h}:{jag}')
if j < 10:
print(f'The time for the end of the first third of the night is {h}:{0}{jag}')