#include<iostream>
using namespace std;
int main(){
  int *ptr;
  *ptr = 6;
  cout << *ptr << endl;
  return 0;
}