#Lutece0830. Naive and Silly Muggles

Naive and Silly Muggles

Migrated from Lutece 830 Naive and Silly Muggles

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Three wizards are doing a experiment. To avoid from bothering, a special magic is set around them. The magic forms a circle, which covers those three wizards, in other words, all of them are inside or on the border of the circle. And due to save the magic power, circle's area should as smaller as it could be.

Naive and silly muggles(who have no talents in magic) should absolutely not get into the circle, nor even on its border, or they will be in danger.

Given the position of a muggle, is he safe, or in serious danger?

Input

The first line has a number TT (T10T\leq 10) , indicating the number of test cases.

For each test case there are four lines. Three lines come each with two integers xix_i and yiy_i (xi,yi10\left | x_i, y_i \right | \leq 10), indicating the three wizards' positions. Then a single line with two numbers qxq_x and qyq_y (qx,qy10\left | q_x, q_y \right | \leq 10), indicating the muggle's position.

Output

For test case XX, output Case #X: first, then output Danger or Safe.

Samples

3
0 0
2 0
1 2
1 -0.5

0 0
2 0
1 2
1 -0.6

0 0
3 0
1 1
1 -1.5
Case #1: Danger
Case #2: Safe
Case #3: Safe

Resources

2013 ACM-ICPC China Chengdu Provincial Programming Contest