The most basic structure of the programs you will write

#include <iostream>
 
int main(int argc, char const *argv[])
{
	// your items
	return 0;
}