#include <iostream>
#include <string>
using namespace std;

class Student {
    public:
    static void greet {
        cout << "Welcome!" << endl;
    }
};

int main() {
    Student::greet();
}