#P5715. Sort Three Numbers
Sort Three Numbers
Sort Three Numbers
You are given three integers \(a, b, c\) such that \(0 \leq a, b, c \leq 100\). Your task is to sort these three numbers in ascending order.
Print the sorted numbers separated by a space.
inputFormat
The input consists of a single line containing three integers \(a\), \(b\), \(c\) separated by spaces.
outputFormat
Output the three integers in ascending order separated by spaces.
sample
3 2 1
1 2 3