Computer Science, asked by manishgowda5035, 8 months ago

Program to find sum of two digits

Answers

Answered by srabani80pal
1

Answer:

Explanation:

Program : C Program to find sum of two numbers

  1. #include<stdio.h>
  2. int main() {
  3. int a, b, sum;
  4. printf("\nEnter two no: ");
  5. scanf("%d %d", &a, &b);
  6. sum = a + b;
  7. printf("Sum : %d", sum);
  8. return(0);
Answered by neymarbrasilbr10
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