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.               Comsole.Out.WriteLine("24 and 45 added:  "  +  (24  +  45));
  17.             Console.In.ReadLine();
  18.  
  19.         }
  20.  
  21.     }
  22.  
  23. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(16,15): error CS0103: The name `Comsole' does not exist in the current context
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty