#include using namespace std; constexpr long double PI = 3.1415926535897932384626433; //Euclidean distance template T EucDist(T x1, T y1, T x2, T y2) { return sqrt((x1 - x2)*(x1 - x2) + (y1 - y2)*(y1 - y2)); } int main() { double r,R,ok = 180., ng = 360., md,x,y,d; cin >> r >> R; assert(0