문제풀이/BAEKJOON
백준 2557번 [Hello World] - C++
은로그래머
2024. 1. 25. 23:28
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}