/* Selftest 1-2.c */
#include <stdio.h>
int main(void)
{
  int xx,yy;
  xx=3.8;
  yy=5.2;
  printf("The sum of %d and %d is %d\n", xx,yy,xx*yy);
  return 0;
}