I need to know if i am providing a=3 and b=kite then the output should 3kite but it is showing an error, plz help me through this...
a=eval(input("enter a number:"))
b=eval(input("enter second data:"))
c=(a+b)
print("the result is:",c)
a=eval(input("enter a number:"))
b=eval(input("enter second data:"))
c=(a+b)
print("the result is:",c)