Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- namespace _05._Sort_Numbers
- {
- class SortNumbers
- {
- static void Main(string[] args)
- {
- List<decimal> input = Console.ReadLine()
- .Split(' ')
- .Select(decimal.Parse)
- .ToList();
- input.Sort();
- Console.WriteLine(string.Join(" <= ", input));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment