#include <iostream>

using namespace std;
// Function 
void bubbles(int x, int y) {
  int sum;
  sum = x + y;
  cout << "The sum of the numbers: " << sum;
}
int main() {
  int x, y;
  cout << "Enter Value x: ";
  cin >> x;
  cout << "Enter Value y: ";
  cin >> y;
  // Use Function 
  bubbles(x, y);
  return 0;
}