Submit | All submissions | Best solutions | Back to list |
KIDZEE1E - Sort them All |
Given 3 distinct numbers, print them in ascending order.
তিনটি পৃথক সংখ্যা দেয়া থাকবে। এদেরকে ছোট থেকে বড় আকারে প্রিন্ট করতে হবে।
Input
First line contains the test case number T (T <= 10). Each line contains three integers, n1, n2, n3. None of them are greater than 1000 and all three are distinct.
ইনপুট ফাইলের প্রথম লাইনে থাকবে টেস্ট কেসের সংখ্যা T (T<=100). এরপরে প্রতিটি লাইনে তিনটি করে পূর্ণ সংখ্যা n1, n2, n3 থাকবে যারা প্রত্যেকে স্বতন্ত্র এবং 1000 এর সমান বা ছোট।
Output
For each case print the case number starting from 1 and then print the three given numbers in ascending order. Two consecutive numbers must be separated by exactly one space. See sample input output for more details.
প্রতিটি কেসের জন্য একটি করে কেস নম্বর প্রিন্ট করতে হবে। এরপরে প্রদত্ত তিনটি সংখ্যাকে ছোট থেকে বড় আকারে সাজিয়ে প্রিন্ট করতে হবে। পাশাপাশি দু’টি সংখ্যার মাঝে শুধুমাত্র একটি স্পেস প্রিন্ট করতে হবে। নমুনা আউটপুটে আরো বিস্তারিত দেখতে পারো।
Example
Input: 3 3 2 1 1 2 3 10 5 6 Output: Case 1: 1 2 3 Case 2: 1 2 3 Case 3: 5 6 10
Added by: | Shafaet |
Date: | 2013-01-09 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | Own problem - Used for Junior Training |