https://inha.codetree.ai/missions/4/problems/take-three-integers-and-output/description
오늘은 두 줄 입력 받기를 공부했습니다!
python에서 입력은 한 줄 단위로만 받을 수 있습니다.
따라서 2개의 줄에 걸쳐 입력을 받기 위해서는, 다음과 같이 input() 함수를 2번 사용하면 됩니다.
a = input()
b = input()
print(f'A is {a}, B is {b}')
정수 a, b, c를 입력받고, a와 b와 c를 차례대로 출력하는 프로그램을 작성하세요.
a,b =map(int,input().split())
c =int(input())
print(f"{a} {b} {c}")