Відповідь:
a=int(input(""))
b=int(input(""))
c=int(input(""))
d=int(input(""))
if a > b or a > c or a > d :
a = a + 5
print(str(a))
if b > a or b > c or b > d :
b = b + 5
print(str(b))
if c > b or c > a or c > d :
c = c + 5
print(str(c))
if d > b or d > c or d > a :
d = d + 5
print(str(d))
Python v3.8.1