0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-11 18:51:59 +00:00

B2002 Hello,World!

R52360519
This commit is contained in:
Baoshuo Ren 2021-07-04 07:30:03 +08:00 committed by Baoshuo Ren
parent 48c7c9b164
commit 4d2d1430e4
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,8 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
cout << "Hello,World!" << endl;
return 0;
}