This is what I have so far :/
#include <iostream>
using namespace std;
int main()
{
int i;
for (i = 1; i <= 12; i++)
{
cout << i;
if ((i = 4) && (i = 9)){
cout << " \n";
}
else {
cout << endl;
}
}
system("pause");
return 0;
}