eolymp
bolt
Try our new interface for solving problems
Problems

Random point in a circle

Random point in a circle

Time limit 1 second
Memory limit 128 MiB

Print a point chosen uniformly at random inside the circle of radius 1 centered at (a, b).

Input data

One line contains three integers n (0 < n1000), a and b (-100a, b100).

Output data

Print n lines. Each line must contain two real numbers x and y, where (x, y) is a uniformly chosen point strictly inside the circle of radius 1 centered at (a, b).

Examples

Input example #1
5 3 6
Output example #1
3.876984 5.564813
2.235771 5.928483
3.268512 5.227540
3.298673 6.924705
2.274073 5.551337
Author Michael Medvediev