#include <stdio.h>

int main() {
  int a = 68;
  char b = 'b';
  printf("a = %c, b = %d", a, b); // note the format specifiers used
  printf("\n");
}