sum of two numbers

                  lets consider the two numbers be takes as variables A and B.

by adding the two given variable values lets write code to add the values and let the sum value be C.

a=int(input("enter the first value")

  b=int(input("enter the second value")

  c=a+b

  print(c)