using System;
namespace NumberInRange
{
internal class Program
{
static void Main(string[] args)
{
int number = int.Parse(Console.ReadLine());
if (number >= -100 && number != 0 && number <= 100)
{
Console.WriteLine("Yes");
}
else
{
Console.WriteLine("No");
}
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)