#include int main(void){ float a, b; printf("Enter two numbers: "); scanf("%f", &a); scanf("%f", &b); printf(" sum = %f.", a + b); return 0;}