Advertisement
MyOnAsSalat

Untitled

Mar 31st, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4.     public class Program
  5.     {
  6.         public static void Main()
  7.         {
  8.             int[] point = Console.ReadLine().Split(' ').Select(x => Convert.ToInt32(x)).ToArray();
  9.             Array.Sort(point);
  10.             Console.WriteLine(Math.Min(point[2] - point[1] + point[2] - point[0], point[2] - point[1] + point[1] - point[0]));
  11.  
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement