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