using System;
public class Program
{
public static void Main()
for(int j = 1; j <= 100; j++)
string result = "";
if(j%10 == 0) result = "jojo";
if(result.Length == 0) result = j.ToString();
Console.WriteLine(result);
}