#include #include "prompt_for_number.h" int main() { int a,b; double c,d; a = ask_for_integer("Enter first number: "); b = ask_for_integer("Enter second number: "); printf("Sum of the two is %d\n", a+b); c = ask_for_double("Enter first floating point number: "); d = ask_for_double("Enter second floating point number: "); printf("Sum of the two is %g\n", c+d); return 0; }