Python Calculator v1 Code: a = input("1st number you want to add") b = input("2nd number you want to add") c = a + b print(c)