Advertisement
Md_hosen_zisad

sope

Aug 7th, 2017
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int a,b;
  5.     scanf("%d %d",&a,&b);
  6.     printf("a= %d b=%d",a,b);
  7.     a=a+b;
  8.     b=a-b;
  9.     a=a-b;
  10.     printf("a=%d b=%d",a,b);
  11.     return 0;
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement