using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace ConsoleApplication18 { class Program { static void Main(string[] args) { int a = 2; int b = 2; int c = a * b; Console.WriteLine("c = " + c); Console.ReadLine(); } } }
Comments
Leave a comment