- 1
My code doesn't work?
It worked in the playground, but not in the trainer. Where can be the mistake? https://code.sololearn.com/cDqg5Wlpb2TU/?ref=app
2 odpowiedzi
+ 2
1.) Do not put anything inside the given input() function
2.) Do not print anything if score < 80
+ 2
Laura Melguizo 
Lisa is right. Please before checking don't dislike answer.
Test Cases results only accept final value so you should not write your own text.
Here is solution:
score=int(input())
#print (score)
if score >= 80:
    print ("certificate")
    
    if score >= 90:
        print ("admitted")



