anyone know the right way of wrighting the following code?:

#include <iostream.h>

void funktion1()
{
cout<<"ffffffffffffffffffffff";
}

void funktion2()
{
cout<<"zzzzzzzzzzzzzzzzzzzzzzzz";
}

main()
{
funktion1();
funktion2();
return 0;
}