#include "stac.h" int main(){ Stac st; st.append(1); st.append(2); st.append(3); st.append(4); st.append(5); st.print(); }