import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		Scanner sc = new Scanner(System.in);
		int tempDay;
		String [] splitted;
		String tempMonth;
		while(sc.hasNext()){
    		splitted = sc.nextLine().split(" ");
    		tempDay = Integer.parseInt(splitted[0]);
    		tempMonth = splitted[1];
    		System.out.println(tempDay + "," + tempMonth);
		}
	}
}