# 학생 클래스의 객체는 객체 생성 시 국어, 영어, 수학 점수를 저장하며, 총점을 구하는 메서드를 작성한다.

실행 구문은 안건들고 객체 지향코드 사용해서 만들어야하는데 저거만쓰고 못만들겠네요 어떻게 해야죠?
검색해서 비슷한건 몇개 나오는데 몇시간 동안 봐도 모르겠네요

# 코드 작성: Student 클래스를 구현하라.
class Student:

  def __init__(selfkoenma):

# 실행 구문 
print("국어, 영어, 수학 점수를 차례로 입력하시오.\n")
score = input()
score = score.split()
score = list(map(int, score))
student_1 = Student(score[0], score[1], score[2])
student_1.set_sum()
student_1.print_sum()