(구) solved ac class 문제들/class 1

[class 1]백준 Hello World(2557번) (C++/Python)

isekaipudding 2026. 2. 5. 12:59

문제 : Hello World(2557번)(Bronze V)

문제 링크 : https://www.acmicpc.net/problem/2557
출처 : Baekjoon Online Judge

 

그냥 단순합니다.

Hello World를 출력하면 됩니다!

[C++]

#include <bits/stdc++.h>
 
using namespace std;
 
int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    cout << "Hello World!";
 
    return 0;
}

[Python]

print("Hello World!")