fork download
  1. using System;
  2. class C {
  3. static void Main() {
  4. Console.WriteLine(Math.Round(95.0/10.0));
  5. Console.WriteLine(Math.Round(105.0/10.0));
  6. }
  7. }
Success #stdin #stdout 0.02s 14820KB
stdin
Standard input is empty
stdout
10
10