#include<iostream>
#include "stdafx.h"
int main()
{
int c = 0;
for (int i = 0; i < 10; i++)
{
c++;
if (i % 2 == 0)
c++;
}
}
#include<iostream>
using namespace std;
int main()
{
int c = 0;
for (int i = 0; i < 10; i++)
{
c++;
if (i % 2 == 0) {
c++;
cout << c << endl;
}
}
return 0;
}