using System;
public class Program
{
private void mul()
int a=10;
int b=15;
int c=a*b;
MessageBox.show(c.ToString());
}