1) c 2) 100 3) 3 4) 21, 4 5) c 6) a 7) 아무것도 나오지 않는다. 8) 9) none 10) 반복되는 일을 줄이기 위해서이다. 11) def example(): print("안녕하세요") example() 12) a = int(input("a의 값을 입력하세요")) b = int(input("b의 값을 입력하세요")) def sum(a,b): print("%d와 %d의 합은 %d입니다."%(a,b,a+b)) sum(a,b)