X、Y坐标的计算的问题,输入点的坐标怎么通过计算得到,采用C语言

Problem Description
There is a point P at coordinate (x,y).
A line goes through the point, and intersects with the postive part of X,Y axes at point A,B.
Please calculate the minimum possible value of |PA|∗|PB|.

Input
the first line contains a positive integer T,means the numbers of the test cases.

the next T lines there are two positive integers X,Y,means the coordinates of P.

T=500,0<X,Y≤10000.

Output
T lines,each line contains a number,means the answer to each test case.

Sample Input
1
2 1

Sample Output
4

https://www.cnblogs.com/handsomecui/p/5095269.html