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