공부 일지/알고리즘
[기초 코드 작성 요령 II]BOJ 2557번 - Hello World
Roble
2023. 12. 30. 15:17

#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout << "Hello World!";
}