using System;
public class Program
{
public static void Main(string[] args)
{ int a = 2;
int b = 7;
int area = a*b;
Console.WriteLine(area);
}