fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int num;
  6.  
  7. cin >> num; // Reading input from STDIN
  8.  
  9. cout << "Input number is " << num << endl; // Writing output to STDOUT
  10.  
  11. }
  12.  
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
Input number is 32765