Untitled
Anonymous
plain_text
07/21/2024 5:21 PM
244 B
19
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