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