#include <stdio.h>
#include "checkit.h"

char letterPosition(char y) {
  int t;
  
  t = y - 'A' +1 ;  

  printf("%c is the %dth letter in the alphabet\n", y,t);

 return(0);
}


int main() {

 letterPosition('Z');
 letterPosition('A');
 letterPosition('K');

return 0;
}