CPP 문제풀이/백준
2557번(Hello world)
hjc_
2019. 9. 14. 16:22
#include <bits/stdc++.h>
using namespace std;
int main()
{
printf("Hello World!");
}