# 1. 입력받기
numbers = input().split() # ['3','7','2','9','5']
# 2. 숫자로 변환
numbers_int = []
for num in numbers:
numbers_int.append(int(num))
# 3. 가장 큰 수 찾기
max_num = max(numbers_int)
# 4. 문자열로 변환
max_str = str(max_num)
# 5. join으로 출력
result = ','.join([max_str, 'hello', 'world'])
print(result)
To embed this project on your website, copy the following code and paste it into your website's HTML: