#include <stdio.h>
int main(void)
{
int a;
int b;
a = 1;
b = 2;
printf("%d, %d\n", a, b);
ft_swap(&a, &b);
return (0);
}