测试以下

SamuelCloud / 2023-07-22 / 原文

My code
#include <iostream>
#include <algorithm>
#include <cstring>

using namespace std;

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

    cout << "Hello, world!" << "\n";

    return 0;
}