using System;
public class Program
{
public static void Main()
int c = 1;
while (c <= 100)
if ((c == 52) || (c == 67) || ( c == 73) || ( c == 82))
}
else
Console.WriteLine(c);
c = c + 1;