#include <iostream> int main() { int a = 10; int b = a; a = 2000; std::cout << b << std::endl; }