#include<iostream>
#include<string>
using namespace std;
void solveMethod(string tag, string source)
{
? ? int p = 0;
? ? while(p < source.size())
? ? {
? ? ? ? string curTag = source.substr(p, 2);
? ? ? ? string lenHEX = source.substr(p + 6, 2) + source.substr(p + 3, 2);
? ? ? ? int lenDEC = stoi(lenHEX, nullptr, 16);
? ? ? ? if(tag == curTag)
? ? ? ? {
? ? ? ? ? ? string value = source.substr(p + 9, lenDEC * 3);
? ? ? ? ? ? cout << value << endl;
? ? ? ? ? ? break;
? ? ? ? }
? ? ? ? else
? ? ? ? {
? ? ? ? ? ? p += 9 + lenDEC * 3;
? ? ? ? }
? ? }
}
int main()
{
? ? string tag;
? ? string source;
? ? getline(cin, tag);
? ? getline(cin, source);
? ? solveMethod(tag, source);
? ? return 0;
}
?