Why am i getting a NZEC error in this

l= eval(input())
b= eval(input())
area = lb
peri = 2
(l+b)
if area > peri:
print(‘Area’,area,end= ‘\n’)
if area < peri:
print(‘Peri’,peri,end=’\n’)
if area==peri:
print(‘Eq’,peri,end=’\n’)

i have tried using raw_input(),split() too. it does not recognise it and still gives error

Here, is the code