#include <stdio.h>

void main()

{float s;

float s1;

float v;

float t;

printf ("introducir espacio");

scanf ("%f",&s);

printf ("introducir espacio incial");

scanf ("%f",&s1);

printf ("introducir velocidad");

scanf ("%f",&v);

t=(s-s1)/v;

printf ("el tiempo es %f segundos",t);}