Skip to content

About

👋 Welcome to My Personal Site

This is a page created by Michael Qiu.


#include <iostream>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    cout << "Hello world!" << endl;
    return 0;
}
times = 11.4

while times > 0:
    print("Nice to see ya!")
    times -= 1
public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, Visitor!");
    }
}

About Me

Currently an OIer.

Find Me

This is my GitHub page: MichaelQiu

This is my Luogu page: MikePP

Comments