/* © MATTO MATTI 2017 http://mattomatti.com/pl/cs03 napisane przy użyciu Visual Studio Community 2015 2017-08-19 v 1.0 */ using System; namespace pltask2cs { class Program { static void Main(string[] args) { Console.WriteLine("Podaj pierwszą liczbe: "); int a = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Podaj drugą liczbe: "); int b = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("{0} + {1} = {2}", a, b, a + b); Console.ReadKey(); } } }