#include <stdio.h>
int main(){
    int a=10;
    int b=20;
    a=a+b;
    b=a-b;
    printf("swapped num are  %d %d a, b");
    return 0;
}

