#include using namespace std; int main() { auto x = 10; int y = x; cout << "x = " << x << '\n'; cout << "y = " << y << '\n'; }