Consider this program:

class Students:
def _init_(self, name, grade):
self.name = name
self.grade = grade
student34 = Students ("Maria", 10)
student35 = Students ("Jane", 9)
How many objects are created?
(1 point)
none
O one
two
three

The correct answer is two.