Computer Science, asked by neesan193, 7 hours ago

Write a python program that determines whether a student is eligible for PG course or not. To be eligible, the student must have obtained more than 80% in X and XII examination, and 70% plus marks in Graduation. If the student changes his stream (Science, Commerce, or Arts), then deduct 5% from his Graduation score.


please I want correct answer.​

Answers

Answered by mauryaalisha05
0

Answer:

M = int(input())

P = int(input())

C = int(input())

MP = M + P

MC = M + C

PC = P + C

if(((MP>=100) or (MC>=100) or (PC>=100)) and (M+P+C>=180)):

print('True')

else:

print('False')

Similar questions