Given a student has scored M marks in Maths, P marks in
Physics and C marks in Chemistry. Write a program to check if a
student is eligible for admission in a professional course based on the following criteria: Sum of marks in any two subjects >= 100 and M+P+C>= 180.
Answers
Answered by
0
Answer:
yes the student can this is my opinion
Answered by
1
Sample Input
82
55
45
sample output:True
Sample Input
71
30
70
Sample Output: False
Explanation:
M=int(input("Enter marks for Maths: "))
P=int(input("Enter marks for Physics: "))
C=int(input("Enter marks for Chemistry: "))
if(((M+P>=100) or (M+C>=100) or (P+C>=100)) and (M+P+C>=180)):
print("TRUE")
else:
print("FALSE")
Similar questions