Advertisement
Guest User

2888sum

a guest
Sep 22nd, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include<stdio.h>
  2. void main( )
  3. {
  4.    int a,b,sum=0;
  5.    scanf("%d%d",&a,&b);
  6.    sum=a+b;
  7.    printf("sum of %d and %d is %d\n",a,b,sum);
  8.    return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement