Welcome to Westonci.ca, your ultimate destination for finding answers to a wide range of questions from experts. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts. Connect with a community of professionals ready to provide precise solutions to your questions quickly and accurately.

What is the program's output?

main.cpp
Product.h
Product.cpp
Products.h
Products.cpp
#include "Products.h"
using namespace std;

int main() {
Products allProducts;

allProducts.InputProducts();
allProducts.PrintAfterDiscount(2);

return 0;
}
Input
13 Belt
8 Paper
-1
Output


Sagot :