Computer Science, asked by vinayraj5418, 1 month ago

Write a python program to print "Good" if Marks entered by the user is greater than 80 else print "Work hard" 10 M

Answers

Answered by umarfarooqshafi6564
0

Answer:

if Marks > 50:

  print "Good"

else

 print "Work hard"

Explanation:

Similar questions