fork download
#include <iostream>

using namespace std;

int main() {

    int Variable = 5;

    cout << Variable << endl; //any string that is requested to be called out by the system below will not appear.
    cout<<"Hello!";
    string temp = "This works perfectly fine! :)";
    cout<<endl<<temp<<endl;
}
Success #stdin #stdout 0s 2860KB
stdin
Standard input is empty
stdout
5
Hello!
This works perfectly fine! :)