Program to find sum of two digits
Answers
Answered by
1
Answer:
Explanation:
Program : C Program to find sum of two numbers
- #include<stdio.h>
- int main() {
- int a, b, sum;
- printf("\nEnter two no: ");
- scanf("%d %d", &a, &b);
- sum = a + b;
- printf("Sum : %d", sum);
- return(0);
Answered by
0
Python program:
# to find the sum of 2 numbers
A= int(input("First Number: "))
B= int(input("Second Number: "))
Print(A+B)
Similar questions