{"raw_statement":[{"iden":"statement","content":"After suddenly becoming a billionaire, Shi adopted YOLO as his motto and decided to buy a small european island, which he named Shitalia. Many people decided to move to Shitalia to run away from the economic crisis, and then created the Shitalian mafia, led by Dom Shi.\n\nThe Shitalian economy is based on smuggling spoiled cheese, but, as you can imagine, there aren't many people interested in spoiled cheese. Therefore, Shi decided to earn money with land rental.\n\nShitalia is a star-shaped island. Shi is very picky, so he chose a Shi-regular n-star. An n-star is Shi-regular if there are n outer points and n inner points alternated. The outer points must lay on a circle with radius R and the inner points must lay on a circle with radius r and all the points must be equally spaced.\n\nPrint the area of the Shitalia.\n\nThe first line contains three integers 3 ≤ n ≤ 20, 1 ≤ R ≤ 106 and 1 ≤ r ≤ R, indicating the number of points of Shitalia, the radius of the outer circle and the radius of the inner circle.\n\nPrint a single real number - the answer to the problem with absolute or relative error of at most 10 - 6.\n\n"},{"iden":"input","content":"The first line contains three integers 3 ≤ n ≤ 20, 1 ≤ R ≤ 106 and 1 ≤ r ≤ R, indicating the number of points of Shitalia, the radius of the outer circle and the radius of the inner circle."},{"iden":"output","content":"Print a single real number - the answer to the problem with absolute or relative error of at most 10 - 6."},{"iden":"examples","content":"Input3 2 1Output5.1961524227Input4 4 2Output22.6274169980Input6 3 2Output18.0000000000"}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ R_1 = (a_1, b_1) $ and $ R_2 = (a_2, b_2) $ be two rectangles, where $ a_i, b_i \\in \\mathbb{Z}^+ $ denote their side lengths.\n\n**Constraints**  \n$ 1 \\le a_1, b_1, a_2, b_2 \\le 10^3 $\n\n**Objective**  \nDetermine whether one rectangle can be rotated and entirely contained within the other. That is, determine if either:  \n$$\n(\\min(a_1, b_1) \\le \\min(a_2, b_2) \\land \\max(a_1, b_1) \\le \\max(a_2, b_2)) \\quad \\text{or} \\quad (\\min(a_2, b_2) \\le \\min(a_1, b_1) \\land \\max(a_2, b_2) \\le \\max(a_1, b_1))\n$$","simple_statement":"Given two rectangles with dimensions (A1, B1) and (A2, B2), check if one can fit inside the other when rotation is allowed. Print \"Yes\" if possible, \"No\" otherwise.","has_page_source":false}