Your output
Hello, World!
Checker message
OK!
System message
Exited with return code 0
Submission ID | Problem | Status | Score | Time | Memory | Code / Answer files | User | Submit time |
---|---|---|---|---|---|---|---|---|
#11894 | #1. 你好,世界! | Accepted | 100 | 6 ms | 248 K | C++ 11 / 103 B | HKSC2023-263 | 2023-07-08 13:49:24 |
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!";
return 0;
}