Welcome to Westonci.ca, the Q&A platform where your questions are met with detailed answers from experienced experts. Explore our Q&A platform to find reliable answers from a wide range of experts in different fields. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly 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