/*
     Program to show simple addition
*/

#include <stdio.h>

main()
{
  printf("C13.C -> Program to demonstrate simple addition and printf.\n");
  printf("2+3=%d\n", 5);
  return(0);
}
/* End of Program C13 */