Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.ComponentModel.Design;
- using System.Globalization;
- using System.Reflection;
- using System.Security.Cryptography;
- namespace SomeExcercises
- {
- class Program
- {
- static void Main(string[] args)
- {
- int randomNumber = int.Parse(Console.ReadLine());
- if (randomNumber <= -1 || randomNumber >= 1)
- {
- Console.WriteLine("Yes");
- }
- else
- {
- Console.WriteLine("No");
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment