using System;
namespace InvalidNumber
{
class Program
{
static void Main(string[] args)
{
int num = int.Parse(Console.ReadLine());
bool isValid = (num >= 100 && num <= 200) || num == 0;
if (!isValid)
{
Console.WriteLine("invalid");
}
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)