using System;
public class Program
{
public static void Main()
int a = 7;
while (a<=100)
if (a%10==7)
Console.WriteLine(a);
a++;
}