#include <stdio.h>

int main() {
  int x;

  printf("x = ");
  scanf("%d",&x); 
  printf("%d + 1 = %d\n",x,x+1);
  return 0;
}
