fork download
  1. #a=int(input())
  2. #b=int(input())
  3. #c=int(input())
  4. #if((b**2-4*a*c)>0):
  5. # print((-b+(b**2-4*a*c)**(0.5))/(2*a),((-b-(b**2-4*a*c)**(0.5))/(2*a)))
  6. #elif((b**2-4*a*c)==0):
  7. # print((-b+(b**2-4*a*c)**(0.5))/(2*a))
  8. #else:
  9. # print("no")
  10.  
  11. x=int(input())
  12. if(x<=40):
  13. print("Haven't your brain been fucked by a dog?")
  14.  
  15. elif(x<=60):
  16. print("Terrible garbage,just burn it up")
  17.  
  18. elif(x<=80):
  19. print("Need a step even forward")
  20.  
  21. elif(x<=90):
  22. print("You are allowed to be proud of yourself")
  23.  
  24. else:
  25. print("A+,that is an incredible artwork")
Success #stdin #stdout 0.07s 14116KB
stdin
79
stdout
Need a step even forward