Untitled

 avatar
unknown
plain_text
9 months ago
181 B
8
Indexable
#include <iostream>

using namespace std;

int main()
{
    int x;
    cin>>x;
    int KmPerDay=2*x;
    int KmPerWeek=5*KmPerDay;
    cout<<KmPerWeek;
    return 0;
}
Editor is loading...
Leave a Comment