Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace NumberInRange
- {
- class Program
- {
- static void Main()
- {
- int num = int.Parse(Console.ReadLine());
- if (num >= -100 && num <= 100 && num != 0 )
- {
- Console.WriteLine("Yes");
- }
- else
- {
- Console.WriteLine("No");
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment