fork(3) download
  1. # your code goes here
  2. n=int (input ())
  3. s=0
  4. ok=True
  5. for i in range (n):
  6. cur=int (input ())
  7. if cur==3:
  8. print ("None")
  9. from sys import exit
  10. exit ()
  11. s+=cur
  12. av=s/n
  13. if (av<4.5):
  14. print ("Common")
  15. elif (av<5):
  16. print ("High");
  17. else :
  18. print ("Named") ;
Success #stdin #stdout 0.01s 28384KB
stdin
5
3
5
5
5
5
stdout
None