Answer:
int main()
{
int speed = 25, time = 15;
int distance = speed * time;
cout<<"The distance is: " << distance <<endl;
return 0;
}
Step-by-step explanation:
- Initialize the variable speed as 25 and time as 15
- Calculate the distance by multiplying speed and time
- Print the distance