using System;   namespace Adition {     class Adition    {         static void Main(string[] args)         {             Console.Out.WriteLine("24 and 45 concatenated:  "  +  24  +45);              Console.Out.WriteLine("24 and 45 added:  "  +  (24  +  45));             Console.In.ReadLine();         }     } }