#include <iostream>
using namespace std;

int main() {
	cout << string(50, 'x') << endl;
	cout << string{50, 'x'} << endl;
	return 0;
}