Skip to content

Instantly share code, notes, and snippets.

@LevShab
Created March 6, 2015 12:50
Show Gist options
  • Save LevShab/8b6a006104e6c57c8a4a to your computer and use it in GitHub Desktop.
Save LevShab/8b6a006104e6c57c8a4a to your computer and use it in GitHub Desktop.
plus
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Plus2
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Введите числа, что бы получить их сумму");
int first = Convert.ToInt32(Console.ReadLine());
int second = Convert.ToInt32(Console.ReadLine());
int plus = first + second;
Console.WriteLine("Вот их сумма");
Console.WriteLine(plus);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment