#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int a=0,b=3,c=2;
	if (a<b<c)
		cout << "Ветка 1" << endl;
	else
		cout << "Ветка 2" << endl;
	return 0;
}