#include #include #include "kcats.h" #include "kcats.h" // Test include guards int main() { KCats kcats{}; int value{}; while (std::cin >> value) { kcats.push(value); } while (!kcats.empty()) { std::cout << kcats.pop() << ' '; } std::cout << std::endl; }