fork download
  1. using System;
  2. public class Test
  3. {
  4. public static void Main()
  5. {
  6. int x=5;
  7. int y=6;
  8. int z=7;
  9. Console.WriteLine(Math.Max(x + y + z, x*y*z) + 10);
  10. }
  11. }
Success #stdin #stdout 0.02s 22472KB
stdin
Standard input is empty
stdout
220