코드 #include int main() { int tall, weight, heavy; scanf("%d %d", &tall, &weight); heavy = weight + 100 - tall; printf("%d\n", heavy); if (heavy > 0) { printf("Obesity"); } return 0; } 문제 http://www.jungol.co.kr/bbs/board.php?bo_table=pbank&wr_id=166&sca=1050