#include <stdio.h>

/* A simple C program to test the LC-3 compiler */

void main() {
  int a, b;

  a = 5;
  b = a*a + 3;
  printf("Result = %d\n", b);
} 
