using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics; namespace ekzamen { public class Class1 { public int tabica(int x,int z,int t= 1) { Console.WriteLine("введитее число на каторую умножит"); x = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("до скольки"); z = Convert.ToInt32(Console.ReadLine()); for (int i = 1; i < x * z; i++) { i = x * t; t++; Console.Write("{0}, ", i); } return 0; } } }