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