• + 0 comments
    #include <stdio.h>
    #include<iostream>
    
    void update(int *a,int *b) {
            int temp= *a + *b;
            *b=abs(*a - *b);
            *a=temp;
    }