1#include <iostream>
2
3include namespace std;
4
5int main() {
6 int flourBagCount = 16;
7
8 if (flourBagCount < 15) {
9 cout << "There are not enough bags of flour in inventory."
10 } else {
11 cout << "There are enough bags of flour in inventory."
12 }
13}