A hardware store charges 4 cents for nuts and 6 cents for bolts.
Write a C++ program that asks the user for the number of bolts and number of nuts in their purchase and then calculates and prints out the total cost.
As an added feature, the program should check the order. It is usually a mistake if there are more bolts than nuts. If that is the case, the program should display the message "Check the Order!" If the number of nuts and bolts are the same, the program should instead display "Order is OK." In either case, the total cost is written out.