using System;
public class Program
{
public static void Main()
int a;
Console.WriteLine("הכנס את הציון במבחן ");
a = int.Parse(Console.ReadLine());
if (a >= 0 && a <= 100)
Console.WriteLine("הציון חוקי");
else
Console.WriteLine("הציון לא חוקי");
}