Программа не работает, не знаю, что делать
a = raw_input('Vvedite znachenie a ‘)
b = raw_input(’Vvedite znachenie b ‘)
if a<0 : f = 0
if a>0 and b>0 and a % 2 == 0 and b % 2 == 1 : f = -1
if a>0 and b>0 and a % 2 == 1 and b % 2 == 0 : f = -2
if a>0 and b>0 and a % 2 == 1 and b % 2 == 1 : f = a-b
if a>0 and b>0 and a % 2 == 0 and b % 2 == 0 : f = a*b
print (’f=',f)