Skip to content

Instantly share code, notes, and snippets.

@keehyun2
Created January 18, 2018 07:50
Show Gist options
  • Save keehyun2/3a665e65dac0efa9413eee09b0cf8b43 to your computer and use it in GitHub Desktop.
Save keehyun2/3a665e65dac0efa9413eee09b0cf8b43 to your computer and use it in GitHub Desktop.
using System;
namespace C_sharp
{
class Program
{
static void Main(string[] args)
{
string[] str = Console.ReadLine().Split();
Console.WriteLine(int.Parse(str[0]) + int.Parse(str[1]));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment