fork download
  1. using System;
  2.  
  3.  
  4.  
  5. namespace Adition
  6.  
  7. {
  8.  
  9.     class Adition    {
  10.  
  11.         static void Main(string[] args)
  12.  
  13.         {
  14.  
  15.             Console.Out.WriteLine("24 and 45 concatenated:  "  +  24  +45);
  16.              Console.Out.WriteLine("24 and 45 added:  "  +  (24  +  45));
  17.             Console.In.ReadLine();
  18.  
  19.         }
  20.  
  21.     }
  22.  
  23. }
Success #stdin #stdout 0.04s 37016KB
stdin
Standard input is empty
stdout
24 and 45 concatenated: ?2445
24 and 45 added: ?69