#include<stdio.h>
int mani()
{
    int a;
    int b;
    scanf("%d",&a);
    scanf("%d",&b);
    printf("%d,%d",a,b);
    return 0;
}