#include <stdio.h>

int main() {
  int x;
  
  scanf("%d",&x);
  printf("The next number is %d.\n",x+1);

  return 0;
}
