fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int x=1;
  8. double y=5;
  9. int z;
  10. x+=6;
  11. y%=3;
  12. x++;
  13. z=Convert.ToInt16(Console.ReadLine());
  14. y=Convert.ToInt16(y);
  15. Console.WriteLine(x+y+z);
  16. }
  17. }
Success #stdin #stdout 0.01s 131648KB
stdin
Standard input is empty
stdout
10