공부하기/백준

[Python] 백준 풀기 23234 - The World Responds

XEV 2023. 7. 13. 23:46

파이썬 백준 23234번

브론즈 5

https://www.acmicpc.net/problem/23234

 

23234번: The World Responds

In many introductory computer programming classes, the first program that students learn to write just prints “Hello, world!” It is used as a first assignment because it is a simple program that produces output. The program dates back to at least 1974,

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 구현

 

 

 

 

 

문제 풀기

print() 를 이용하여 주어진 문자를 출력한다.

 

 

 

 

 

코드 보기

print ("The world says hello!");