import java.util.*; class Question { public static void main(String args[]) { String s1 = "abc"; String s2 = "def"; Stack stack = new Stack(); stack.push(s1); stack.push(s2); try { String s3 = (String) stack.pop() + (String) stack.pop(); System.out.println(s3); }catch(EmptyStackException ex){ } } }