fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. stack<string> st;
  6.  
  7. st.push("f");//0
  8. st.push("i");//1
  9. st.push("r");//2
  10. st.push("A");//3
  11.  
  12. cout << st.top() << endl;
  13. //int n = st.size();
  14. while(!st.empty()){ //1 or 0
  15. cout << st.top();
  16. st.pop();
  17. }
  18. return 0;
  19. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
A
Arif