using System;
public class Program
{
public static void Main()
Random rnd = new Random();
int zahl2 = rnd.Next(7) + rnd.Next(7);
Console.WriteLine(zahl2);
}