멀쩡한 사각형
수학적 원리로 설명이 잘되어있다. 설명 잘되어 있는 곳
import math def solution(w,h): answer = w * h - (w + h - math.gcd(w, h)) return answer