public static void Main()
int[] lectura = new int [10];
if (File.Exists(@"C:/Users.txt"))
StreamReader koko = new StreamReader(@"C:/Doc.txt");
for (int i=0; i <=9; i++)
lectura [i] = int.Parse(Console.ReadLine());
koko.WriteLine("Dame un valor numérico");
int n = int.Parse(koko.ReadLine());
for (int i=0; i <=9; i++)
Console.WriteLine((lectura [i]*n));
Console.WriteLine("El archivo no existe.");