using System;
public class Program
{
public static void Main()
int a = 30;
int b = 3;
int c = a * b;
Console.WriteLine( c);
}