সংখ্যা সাজাও (Sort the Numbers)

CPU: 0.2s
Memory: 1024MB


তিনটি পূর্ণ সংখ্যা দেওয়া আছে, তোমাকে তাদেরকে বড় থেকে ছোটো আকারে সাজাতে হবে।

Given three integers, you need to sort them in descending order.


ইনপুটের বর্ণনা

ইনপুটে থাকবে তিনটি করে পূর্ণসংখ্যা A, B এবং C। A, B এবং C –এর পরমমান ২০০ থেকে বেশি হবে না । ( |A|,|B|,|C| <= 200 )


Input Specification

You will be given three integers A, B and C. The absolute value of A, B and C will not exceed 200.


আউটপুটের বর্ণনা

আউটপুটে তিনটি নম্বরকে বড় থেকে ছোটো আকারে সাজিয়ে লিখতে হবে।


Output Specification

You need to write the three integers in descending order in the output.


Sample

InputOutput
1 2 3 2 1 33 2 1 3 2 1