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