#include "Stack.h" #include #include int main() { Stack stack; std::string word; while ( std::cin >> word ) stack.push(word); while ( ! stack.empty() ) std::cout << stack.pop() << ' '; return 0; }