8 lines
123 B
Plaintext
8 lines
123 B
Plaintext
|
|
// [문제 링크]: https://www.acmicpc.net/problem/2557
|
|||
|
|
|
|||
|
|
#include <stdio.h>
|
|||
|
|
int main()
|
|||
|
|
{
|
|||
|
|
printf("Hello World!");
|
|||
|
|
}
|
|||
|
|
|