#include <iostream> int main() { int x = 5; int y = 6; int sum = x + y; std::cout << x << '\n'; std::cout << y << '\n'; std::cout << sum << '\n'; return 0; }
To embed this program on your website, copy the following code and paste it into your website's HTML: