#include <stdio.h>

int main() {
  double u, v;
  
  scanf("%lf%lf",&u, &v);
  printf("The total is %lf.\n",u+v);

  return 0;
}
