Program to find Length of Latus Rectum of an Ellipse
Given two integers A and B, representing the length of semi-major and semi-minor axis of an Ellipse with general equation (x2 / A2) + (y2 / B2) = 1, the task is to find the length of the latus rectum of the ellipse Examples: Input: A = 3, B = 2Output: 2.66666 Input: A = 6, B = 3Output: 3 Approach: T