Facebook
From Aqua Cat, 2 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 96
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. int a,b,wynik;
  5. int main()
  6. {
  7.     cout << "Hello world!" << endl;
  8.     cout << "podaj liczbe = " <<endl;
  9.     cin>>a;
  10.     cout<<"podaj liczbe = "<<endl;
  11.     cin>>b;
  12.     wynik=a+b;
  13.     cout<<"suma wynosi = "<<wynik;
  14.     return 0;
  15. }
  16.