#include <stdio.h>

int main()
{
  int a, b;
  FILE *file = fopen("test.dat", "r");
  fscanf(file, "%d %d", &a, &b);
  fclose(file);
  printf("%d + %d = %d\n", a, b, a+b);
  return 0;
}
