using System;
public class Program
{
public static void Main()
string test = "0123456789";
foreach(char c in test)
Console.WriteLine(c - '0');
}