using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukicoderTest { class Program { static void Main(string[] args) { string inputnum = Console.ReadLine(); string input = Console.ReadLine(); string[] str = input.Split(' '); int[] num = new int[str.Length]; for (int i = 0; i < str.Length; i++) { num[i] = int.Parse(str[i]); } int cnt = 0; for(int i=0;i