#include <iostream>
using namespace std;

int main() {
	string tekst1 = "Technik";
	string tekst2 = "Reklamy";
	string napis = tekst1 + " " + tekst2;
	cout << napis.size() << endl;// your code goes here
	return 0;
}