Advertisement
RAJIBRAJU

URI1

May 24th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include<stdio.h>
  2. int main ()
  3. {
  4.     int A,B,X;
  5.     printf("enter any two integer numbers:");
  6.     scanf("%d%d",&A,&B);
  7.     X = A+B;
  8.     printf (" the result of sum is=%d\n", X );
  9.  
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement