fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int A, B;
  6. cin >> A >> B;
  7. int suma = A + B;
  8. cout << "Witaj na V konkursie FRAKTAL! Suma " << A << " i " << B << " to " << suma << "." << endl;
  9. cout << "Powodzenia, programisto!";
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5296KB
stdin
11
9
stdout
Witaj na V konkursie FRAKTAL! Suma 11 i 9 to 20.
Powodzenia, programisto!