include[HTML_REMOVED]
using namespace std;
int main()
{
int number1,amount1,number2,amount2;
double price1,price2,sum;
cin>>number1>>amount1>>price1>>number2>>amount2>>price2;
sum=amount1price1+amount2price2;
printf(“VALOR A PAGAR: R$ %.2lf”,sum);
return 0;
}