#include <iostream>
using namespace std;

int main() {
	auto test = 13LUL;
	
	cout << test << endl;
	return 0;
}