#include <iostream>
using namespace std;
int main()
{
  char *ptr;
  char Str[] = "abcdefg";
  ptr = Str;
  ptr += 4;
  cout << ptr;
  return 0;
}