fork download
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. // zdefiniuj funkcję
  6. int ciekawa(int n) {
  7. }
  8.  
  9. int main() {
  10. // sprawdź działanie funkcji
  11. cout << ciekawa(4) << " " << ciekawa(19) << endl;
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty