counter=0
for i in range (5):
Mark = float (input("Enter a student's mark: "))
if (Mark >= 70):
counter = counter+1
print ("The number of students with marks greater "+ "than or equal to 70 is ", counter)