Skip to content

Vineet2000-dotcom/python-if-else

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

python-if-else

import math import os import random import re import sys

if name == 'main': n = int(input().strip())

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

About

This is a solution for the Hackerank problem

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published