// editor3
#include<stdio.h>
#include<stdlib.h>
void swap(int a,int  b){
   int temp=a;
   a=b;
   b=temp;
}
int main(){
   int A,B;
   scanf("%d",&A);
   scanf("%d",&B);
  void swap(a,b)
}