#include<iostream>
using namespace std;
    
    class Student {
        public:
        int score=30;
        void Display() {
            cout<< "Score" << score << endl;
    };
    int main() {
        Student s1;
        s1.Display();
    }