#include
int fun(int a,int b)
{
int temp;
temp=a;
a=b;
b=temp;
return a,b;
}
void main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d,%d",a,b);
}
#include
int fun(int a,int b)
{
int temp;
temp=a;
a=b;
b=temp;
return a,b;
}
void main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d,%d",a,b);
}