We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
if__name__=='__main__':N=int(input().strip())ifN%2==1:print("Weird")elifN%2==0and2<=N<=5:print("Not Weird")elifN%2==0and6<=N<=20:print("Weird")elifN%2==0andN>20:print("Not Weird")else:print("you entered the number out of constraint (1=<N=>100")
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 3: Intro to Conditional Statements
You are viewing a single comment's thread. Return to all comments →
My solution is as follows: