정올문제링크 연습문제 1 #9522res = input().split()print(res[0])print(res[1]) 자가진단 1 #761s1, s2 = input().split()print(s2, s1 + s2) 연습문제 2 #9523a, b, c = map(int, input().split())print(f"잘못된 결과 : {a}{b}{c}")print("올바른 결과 :", a + b + c) 자가진단 2 #762a1, a2 = input().split()b1, b2 = input().split()print(f"{a1} age + {b1} age = {int(a2) + int(b2)}") 연습문제 3 #9524print(input().strip()) 자가진단 3 #763str1 = input().r..