Advertisement
TaniaTanni

Sum

Oct 23rd, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.    int a,b,sum;
  5.    printf("\nEnter two no:");
  6.    scanf("%d%d",&a,&b);
  7.    sum=a+b;
  8.    printf("Sum:%d",sum);
  9.    return(0);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement