7.2.. Napisati program zaodredjivanje y po formuli

# RAZ07211002
a=int(input("Unesi a"))
b=int(input("Unesi b"))
if a%2==1:
    y=a+b
    print(y)
else:
    y=a-b
    print(y)

Ispis na ekranu:

Index