#include <stdio.h>

int main(void){
  int x ;
  scanf("%d", &x);
  printf("Input was: %d\n", x);
}
