#include <stdio.h>

void main()

{float espacio1;

float velocidad;

float tiempo;

float espacio;

printf ("introducir espacio1");

scanf ("%f",&espacio1);

printf ("introducir velocidad");

scanf ("%f",&velocidad);

printf ("introducir tiempo");

scanf ("%f",&tiempo);

espacio=espacio1+velocidad*tiempo;

printf ("el espacio es %f",espacio);}