fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Byte a,b;
  8. a=Byte.Parse(Console.ReadLine());
  9. b=Byte.Parse(Console.ReadLine());
  10. Console.WriteLine(1.0+a+b);
  11. }
  12. }
Success #stdin #stdout 0.02s 16160KB
stdin
100
200
stdout
301