fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a,b, suma;
  6. cout << "podaj dwie liczby\n";
  7. cin >> a>> b;
  8. suma = 543 + 98;
  9. cout << "suma wynosi: "<< suma;
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
podaj dwie liczby
suma wynosi: 641