using System;
public class Program
{
public static void Main()
/*
Task:
Given an integer, input , perform the following conditional actions:
If input is odd, print Weird
If input is even and in the inclusive range of 2 to 25, print Not Weird
If input is even and in the inclusive range of 26 to 40, print Weird
If input is even and greater than 40, print Not Weird
*/
int input = 8; // change input on your own to check if you're correct.
}