Explore Westonci.ca, the leading Q&A site where experts provide accurate and helpful answers to all your questions. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.

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