SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
38
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- using System;
- namespace ConsoleApp3
- {
- class Program
- {
- static void Main(string[] args)
- {
- int count = 0;
- while (true)
- {
- try
- {
- int num = int.Parse(Console.ReadLine());
- count++;
- }
- catch (Exception)
- {
- Console.WriteLine(count);
- return;
- }
- }
- }
- }
- }
RAW Paste Data

