The shape of a triangle is fully determined by the lengths of its three sides. Each input line contains three positive integers. Process the lines in order as follows.
You may assume the input always contains at least one line that does not form a triangle.
Several lines are given, each with three positive integers separated by spaces. Each integer is at most $100$. The number of lines is unknown; reading stops at the first line that does not form a valid triangle.
On a single line, print four integers separated by single spaces, in this order: counted before the first non-triangle line, (1) the total number of triangles, (2) the number of right triangles, (3) the number of acute triangles, and (4) the number of obtuse triangles. End the line with a newline character.