using System; class MojeRiesenie { public static void Main() { int TOTAL = 0; while (true) { string Line = Console.ReadLine(); if (Line == null) break; TOTAL += int.Parse( Line ); } Console.WriteLine("{0}", TOTAL); } }