code =int(input("Enter the student code in computer programming: "))
#if the offer code is 16548, the student's set is A
if(code==16548):
print("The student's set is A")
#if the offer code is 16558, the student's set is B
elif(code==16558):
print("The student's set is B")
#if the offer code is 16568, the student's set is C
elif(code==16568):
print("The student's set is C")
#if the offer code is 17020, the student's set is D
elif(code==17020):
print("The student's set is D")
else:
print("Wrong code")
Comments
Leave a comment