Untitled
unknown
plain_text
a year ago
232 B
7
Indexable
#include <iostream>
using namespace std;
int main()
{
//speed=distance/time
//distance=speed*time
int speed ,time;
cin>>speed>>time;
int distance=speed*time;
cout<<distance;
return 0;
}
Editor is loading...
Leave a Comment