문제 링크


🔷 분류

구현

✒️ 문제 설명

Hello World!를 출력하시오.

⬅️ 입력

없음

➡️ 출력

Hello World!를 출력하시오.

💻 코드 (C++)

#include <iostream>
using namespace std;
int main(){
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout << "Hello World!";

	return 0;
}

글 이동

Comments