Python3 题解 | #及格分数#
及格分数
http://www.nowcoder.com/practice/56513524333148b38945e1989bc7df4e
#Python3题解#
lis = []
while 1:
try:
lis.append(input())
except:
break
print("\n".join("Pass" if int(x) >= 60 else "Fail" for x in lis))