#문제

#작성 코드

#include <iostream>
#include <stdio.h>
int main()
{
	int x, y, w, h;
	scanf("%d %d %d %d", &x, &y, &w, &h);
	printf("%d", ((x<y)?x:y)<((w-x<h-y)?w-x:h-y)?((x<y)?x:y):((w-x<h-y)?w-x:h-y));
	return 0;
} 

##

'BOJ' 카테고리의 다른 글

BOJ 4153번 :: 직각삼각형  (0) 2019.11.20
BOJ 3009번 :: 네번째 점  (0) 2019.11.19
BOJ 9020번 :: 골드바흐의 추측  (0) 2019.11.19
BOJ 4948번 :: Chebyshev's Theorem(베르트랑 공준)  (0) 2019.11.19
BOJ 1929번 :: 소수 구하기  (0) 2019.11.18

+ Recent posts