From 89ab54245711a588d601097a1900e63d4082d3bf Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Sun, 15 Mar 2026 21:25:14 +0900 Subject: [PATCH] baekjoon 20260315 --- code_study/Baekjoon/python/15726.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code_study/Baekjoon/python/15726.py diff --git a/code_study/Baekjoon/python/15726.py b/code_study/Baekjoon/python/15726.py new file mode 100644 index 0000000..73ab6bd --- /dev/null +++ b/code_study/Baekjoon/python/15726.py @@ -0,0 +1 @@ +print((lambda x, y, z: int(max(x*y/z, x/y*z)))(*list(map(int, input().split())))) \ No newline at end of file