문제

다음 프로그램의 출력 결과를 예상해 보고, 실제 실행 결과와 비 교해 보라.

코드

x, y = 4, 8
print(x)
x *= y
print(x)
x -= y
print(x)

실행 결과

4
32
26

해설