#include <iostream>
#include <cstdio>
using namespace std;

int main() {
	// your code goes here
	int n;
	char bf[1024]={};
	(cin >> n).get();
	gets(bf);
	
	cout << "n" << n;
	cout << "bf" << bf;
	return 0;
}