Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace Problem23
- {
- class Program
- {
- static void Main(string[] args)
- {
- int suma = 0;
- string a;
- while ((a = Console.ReadLine()) != null)
- {
- Console.WriteLine(suma += int.Parse(a));
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment