You are given three integers. Using only conditional statements and without using any built-in sorting function, your task is to return the three values in ascending order.
Input: a = 3, b = 1, c = 2
Output: 1 2 3
Explanation: The values are arranged from smallest to largest.
Input: a = 5, b = 5, c = 2
Output: 2 5 5
Explanation: Duplicate values are placed adjacently in sorted order.
Input: a = 9, b = 7, c = 8
Output: 7 8 9
Explanation: The three values are sorted in ascending order.
Sign in to write, run, and submit your solution against the full test suite.