#include<stdio.h>
void total(int a,int b){
    int temp=a;
    a=b;
    b=temp;
}
int main(){
    total(56,78);
    printf("%d\n",a);
    return 0;
}