Get the answers you need at Westonci.ca, where our expert community is dedicated to providing you with accurate information. Our Q&A platform provides quick and trustworthy answers to your questions from experienced professionals in different areas of expertise. Join our Q&A platform to connect with experts dedicated to providing accurate answers to your questions in various fields.

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