#include<stdio.h>
void main(){
    int a;
    int b,c;
scanf("%d",&a);
scanf("%d",&b);
c=a,b;
printf("%d,%d",c);
    
}