문제 : Hello World(2557번)(Bronze V)문제 링크 : https://www.acmicpc.net/problem/2557출처 : Baekjoon Online Judge 그냥 단순합니다.Hello World를 출력하면 됩니다![C++]#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout [Python]print("Hello World!")