6017
2022. 3. 5. 00:44ㆍAlgorithm/Code Up
문제 설명
정수(integer), 실수, 문자(character), 문자열(string) 등 1개만 입력받아 한 줄로 3번 출력해보자.
예시
s = input()
print(s, s, s) #공백으로 구분해 한 줄로 출력한다.
와 같은 방법으로 3번 출력할 수 있다.
입력
1개의 데이터가 입력된다.
출력
공백을 두고 3번 출력한다.
입력 예시
computer science
출력 예시
computer science computer science computer science
모법 답안
내풀이