using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yuki0715_A { class Program { static void Main(string[] args) { var x = getsplit(); var A = Array.ConvertAll(x, int.Parse); int max = -1; int min = 101; int maxm = -1; int minm = -1; for (int i = 0; i < A.Length; i++) { if (A[i]>max) { max = A[i]; maxm = i; } if (A[i]