Untitled

Anonymous
plain_text
07/21/2024 5:18 PM
312 B
15
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