fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int wiek;
  6.  
  7. cout << "Ile ma lat ";
  8. cin >> wiek;
  9.  
  10. cout << "Spoko, masz " << wiek << " lat." << endl;
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
Ile ma lat Spoko, masz 32765 lat.