void main(){
   int a=10,b=20;
    a=a+b;
    b=a-b;
    a=a-b;
    printf("\n : A= %d, B= %d\n",a,b);
  }

predict the code's output

Posted on by