본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 22938번 백발백준하는 명사수

by 현장 2022. 1. 28.

-코드

x1, y1, r1 = map(int, input().split())
x2, y2, r2 = map(int, input().split())
r = (x2 - x1) ** 2 + (y2 - y1) ** 2
if r < (r1 + r2) ** 2:
    print("YES")
else:
    print("NO")