fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. int Variable = 5;
  8.  
  9. cout << Variable << endl; //any string that is requested to be called out by the system below will not appear.
  10. cout<<"Hello!";
  11. string temp = "This works perfectly fine! :)";
  12. cout<<endl<<temp<<endl;
  13. }
Success #stdin #stdout 0s 2860KB
stdin
Standard input is empty
stdout
5
Hello!
This works perfectly fine! :)