Created
March 6, 2015 12:50
-
-
Save LevShab/8b6a006104e6c57c8a4a to your computer and use it in GitHub Desktop.
plus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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