Answer No : 21 :
n1=int(input("Enter first numbers"))
n2=int(input("Enter second numbers"))
op=input("Enter the operation +,-,*,/ : ")
if op=='+':
    print(n1+n2)
elif op=='-':
    print(n1-n2)
elif op=='*':
    print(n1*n2)
elif op=='/':
    print(n1/n2)
else:
    print("Invalid entry!!")
Output:
Enter first numbers25
Enter second numbers41
Enter the operation +,-,*,/ : *
1025