Skip to content

Instantly share code, notes, and snippets.

@dzsquared
Created January 5, 2017 01:40
Show Gist options
  • Save dzsquared/8a60bd2583dec52447e0588027abe7b1 to your computer and use it in GitHub Desktop.
Save dzsquared/8a60bd2583dec52447e0588027abe7b1 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
class Solution {
static void Main(String[] args) {
string S = Console.ReadLine();
int thenumber;
try {
thenumber = Int32.Parse(S);
Console.WriteLine(thenumber);
} catch (FormatException) {
Console.WriteLine("Bad String");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment