diff --git a/sibice.py b/sibice.py new file mode 100644 index 0000000..ea1ab9b --- /dev/null +++ b/sibice.py @@ -0,0 +1,4 @@ +n, w, h = map(int, input().split()) +s = (w**2 + h**2) ** 0.5 +for _ in range(n): + print("DA" if s >= int(input()) else "NE")