Introduction
Here is the source code for Main.java
Source
import java.util.Stack;
public class Main {
public static void main(String args[]) {
Stack st = new Stack();
st.push("Java");
st.push("Source");
st.push("from java2s.com");
System.out.println(st.search("Source"));
}
}