#include <stdio.h>

void main(void)
{
  int i1 = 0;
  int i2 = -1;

  long long L1 = 0xEFBEADDE;

  short s1 = 0xBE;
  short s2 = -2;

  char c1 = 'h';
  char c2 = 'i';

  char ca3[4] = {'o', 'm', 'g', '\0'};

  struct frac_t {
    short num;
    short den;
  };

  struct frac_t rat;
  rat.num = 127;
  rat.den = 1;

  float f1 = 0;
  float f2 = 1.0;
  float f3 = -1.0;
  float f4 = -0.0048828125;

  printf("use gdb\n");
}