#include <iostream>
using namespace std;
int main( ) {
string one = "Welcome to";
char ch[] = { 'S', 'o', 'f', 't', 'h', 'u', 'n', 't'};
string two = string(ch);
cout<<one<<endl;
cout<<two<<endl;
}