Facebook
From Sened, 7 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 235
  1. int a, b, wynik;
  2.             Console.WriteLine("Podaj pierwszą liczbę :");
  3.             a = Convert.ToInt16(Console.ReadLine());
  4.             Console.WriteLine("Podaj drugą liczbę :");
  5.             b = Convert.ToInt16(Console.ReadLine());
  6.             wynik = a + b;
  7.             Console.WriteLine(wynik);
  8.             Console.ReadKey();