#include <stdio.h>
int swap(a,b,temp)
{
    temp=a;
    a=b;
    b=a;
    return 0;
}
int main()
{
    swap(a,b);
    return 0;
}