CSA

Problem Of The Day

💻 Question:

Ichihime and Triangle EASY

Input Format:

t cases, a, b, c, d.

Output Format:

x, y, z such that a<=x<=b, b<=y<=c, c<=z<=d and form a triangle.

Example:

Input:
1
1 3 5 7

Output:
3 5 5

Explanation:

TC1: 3, 5, 5 forms a triangle. 3+5 > 5.