1. 문자열 str이 주어질 때, str을 출력하는 코드를 작성해 보세요.제한사항1 ≤ str의 길이 ≤ 1,000,000str에는 공백이 없으며, 첫째 줄에 한 줄로만 주어집니다.입력 #1HelloWorld! 출력 #1HelloWorld! 제출 답안import Foundationlet s1 = readLine()!print(s1) readLine() 이란?https://developer.apple.com/documentation/swift/readline(strippingnewline:) readLine(strippingNewline:) | Apple Developer DocumentationReturns a string read from standard input through the end of t..