fork download
  1. #include <stdio.h>
  2. int main() {
  3. int a,b;
  4. scanf("%d%d", &a, &b);
  5. a=a+b; b=a-b; a=a-b;
  6. printf("%d %d", a, b);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 5316KB
stdin
6 7
stdout
7 6