#include <iostream>

int main() {
	int x =1 ;
	for  (int i=3; i<5; i++){
		x +=i;
	}
	std::cout << x;

	return 0;
}