Pietras286

Suma

Dec 13th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. namespace Problem23
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             int suma = 0;
  8.             string a;
  9.             while ((a = Console.ReadLine()) != null)
  10.             {
  11.                 Console.WriteLine(suma += int.Parse(a));
  12.             }
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment