using System;
public class Program
{
public static void Main()
// ask user for an integer
Console.WriteLine("Give me an integer: ");
int x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Give me another integer: ");
int y = Convert.ToInt32(Console.ReadLine());
int n =(x + y);
// analyze user`s input (somewhat inaccurately)
for (int i = 0; i<n; i++)
Console.WriteLine(n);
}}}}