Dcoder icon

Learning sorting numbers with if else @ Dcoder

By Lochard | As a newbie programmer | 18 Jul 2023


Problem: There are 3 numbers given as input sort them in increasing order.

Input: Three space separated positive integer m,n,p

Output: Print the integers in sorted incresing order separated by space.

Constraints: 0<=m<=500

0<=n<=500

0<=p<=500

Try not using any library function to sort.

Sample Input: 4 86 56

Sample Output: 

4 56 86

[print(i, end=' ') for i in sorted(map(int, input().split()))]

How do you rate this article?

1


Lochard
Lochard

20240228 Arrived in the UK for about 2 week. All my fears persist. Some are even getting worse. https://github.com/locharp/asylum_diary/


As a newbie programmer
As a newbie programmer

Sharing entry level codes. My snippets on GitHub https://github.com/locharp/code-snippets

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.