fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. int i;
  6. std::cout << "HELLO" << std::endl;
  7. std::cin >> i;
  8. std::cout << (100/i);
  9. }
Success #stdin #stdout 0.01s 2684KB
stdin
Standard input is empty
stdout
HELLO
0