#include <stdio.h>
 
void _42() {
  printf("%s\n", __func__ + 1);
}
 
int main() {
  _42();
  return 0;
}