xxxxxxxxxx
#include<iostream>
using namespace std;
int main()
{
// Code here
return 0;
}
c++ boiler plate
xxxxxxxxxx
// using the below preprocessor directive allows you to use functionalities
// from different directives without the need of including them
#include<bits/stdc++.h>
using namespace std;
int main()
{
// Code here
cout << "How you doin'";
return 0;
}