fork download
  1. #include <iostream>
  2. using namespace std;
  3. int Kolejnaliczba(int x){
  4. return x + 1;
  5. }
  6. int main() {
  7. int a = 01;
  8. int b = Kolejnaliczba(a);
  9. cout << Kolejnaliczba(b) << "\n";
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
3