write a program to add two numbers
Answers
Answered by
1
Answer:
a=5
b=5
c=a+b
print(c)
Explanation:
normal python program gives output 10
Answered by
0
Explanation:
printf("Enter two integers:") scanf(%d℅d",&number1,&number2); Then ,these two numbers are added using the +operator,and the result is stored in the sum variable. Finally,the printf()function is used to display the sum of numbers .printf ("%d+%d=%d",number1, number2,sum);
hope it helps.
Similar questions