main function

#include <iostream>

int main() {
    int x = 5;
    int y = 3;
    int z = x + y;
    std::cout << "The sum of x and y is: " << z << std::endl;
    return 0;
}