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