fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void wypisz_liczbe(int a)
  5. {
  6. cout << a << endl;
  7. }
  8.  
  9. int main()
  10. {
  11. int liczba;
  12. cout << " Wprowadzona liczba to = 67";
  13. cin >> liczba;
  14. wypisz_liczbe(liczba);
  15. return 0;
  16. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
  Wprowadzona liczba to = 6732766