#Q4
scores_str = input("Enter scores: ")
scores = [int(s) for s in scores_str.split()]
scores.sort()
second_smallest = float('inf')
for score in scores:
if score < second_smallest:
second_smallest = score
else:
break
print("Second smallest score =", second_smallest)