The user enters the time in minutes and the distance in kilometers. Make a program that determines the speed in m / s.

Pascal program for problem conditions:
program sad;
var
a: real;
begin
readln (a);
a: = a * 1000/3600;
writeln (a);
end.
As a result, the screen will display the value in meters per second when the user enters the values in minutes and kilometers.



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.