using System; namespace InitTab { class MainClass { public static void Main (string[] args) { int n = 20; int mod = 17; int []t = new int [n]; for (int i = 0 ; i < n ; i++) t[i] = i*i%mod; foreach(int val in t) Console.WriteLine(val); } } }