Calculator (by Farhan) (on Python)
print("Welcome to Calculator") print("-------Created by Farhan Pravej---------") a = input("Enter the First Number- ") b= input ("Enter the second Number") print("The Value of a", "+", "b", "is", int(a) + int(b))
Knowledge that needs to be shared!