Untitled
unknown
plain_text
2 years ago
213 B
18
Indexable
#include <iostream>
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
int moneyFive=x*5;
int moneyTen=y*10;
int total=moneyFive+moneyTen;
cout<<total;
return 0;
}
Editor is loading...
Leave a Comment