16693번 풀이 [Python]

sua·2022년 7월 9일
0

Baekjoon

목록 보기
79/161
post-thumbnail

문제


풀이

from math import pi

a, b = map(int, input().split())
c, d = map(int, input().split())

if b / a < d / (c ** 2 * pi):
    print("Slice of pizza")
else:
    print("Whole pizza")
profile
가보자고

0개의 댓글