#include #include #include "Stack1.h" void main() { int t1, t2, t3; stack stk ; stk.push(25); stk.push(120); t1 = stk.top(); t2 = stk.pop(); t3 = stk.pop(); cout << t1 << " " << t2 << " " << t3 << endl; getchar(); }