fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int i = 0;
  6.  
  7. scanf("Youhoo: %d\n", &i);
  8.  
  9. printf("Hello Regev %d", i);
  10.  
  11. // your code goes here
  12. return 0;
  13. }
Success #stdin #stdout 0s 3100KB
stdin
4
stdout
Hello Regev 0