#include <stdio.h>

int main() {
  double x;
  
  printf("Supply length in inches: ");
  scanf("%lf",&x); 
  printf("The length in centimetres is %lf\n",2.54*x);`\includegraphics{arrow.pdf}`
  return 0;
}
