#include <stdio.h>
int main() {
// Declare variables to store user input
double num1, num2;
// Prompt the user to enter the first number
printf("Enter the first number: ");
scanf("%lf", &num1);
// Prompt the user to enter the second number
printf("Enter the second number: ");
scanf("%lf", &num2);
// Calculate the sum of the two numbers
double sum = num1 + num2;
// Display the result
printf("Sum: %lf\n", sum);
return 0;
}