write python program to.
1. enter marks in SST of a student. if the marks are less than 33,give 3 grace marks and print the new marks with a message saying "congratulations, you have passed the exam.
Answers
Answered by
0
Answer:
a=int("input("Enter your S.St. marks:, "))
b= 33
if (a<b):
print("Congratulations, you have passed the exam: a+3;")
else:
print(Congratulations, you have passed the exam: a;")
Similar questions