#include <iostream>

using namespace std;
// Function 
void bubbles(string x) {
  cout << "Hello " << x;
}
int main() {
  string y;
  cout << "Enter Your Name: ";
  cin >> y;
  // Use Function 
  bubbles(y);
  return 0;
}