helloworld

且听风吟 / 2023-05-27 / 原文

helloworld

#include<iostream>
using namespace std;

int main() {
	cout << "hello world!" << endl;
	return 0;
}