fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ConsoleApplication1
  5. { class Program
  6. {
  7. static void Main(string[]srgs)
  8. {
  9. int value1, value2, sum;
  10. value1 = 35;
  11. value2 = 18;
  12. sum = value1 + value2;
  13. Console.WriteLine("The sum of " + value1 + " and si "+ value2 + " = " + sum);
  14. Console.Read();
  15. }
  16. }
  17. }
Success #stdin #stdout 0.02s 24660KB
stdin
Standard input is empty
stdout
The sum of 35 and si 18 = 53