#include <iostream>

int main()
{

int a = 10;
int* b = &a;
*b = 20;
std::cout << a;
return 0;
}