#include<stdio.h>
void main(){
int a;
double b, c;
printf("Please enter two numbers: ", a, b);
scanf("%d, %lf", &a, &b);
c = (double)a + b;
printf("%lf\n", c);
return;
}

