ImFe's study

[C] 2557번 - Hello World 본문

Programming/C언어 백준 풀이

[C] 2557번 - Hello World

ImFe 2020. 12. 7. 23:33
#include <stdio.h>

int main()
{
	printf("Hello World!");

	return 0;
}

 

Comments