using System;
public class Program
{
public static void Main()
string input = Console.ReadLine();
foreach (char c in input)
Console.WriteLine(c);
}