• + 0 comments

    n = int(input().strip())

    print("Not Weird" if n % 2 == 0 and (n in range(2,6) or n > 20) else "Weird")