import [Link].
*;
public class [Link] {
public static void main(String[] args) {
Scanner fb = new Scanner([Link]);
Stack<String> baskets = new Stack<String>();
String a = "Apple";
String o = "Orange";
String m = "Mango";
String g = "Guava";
char eats;
[Link]("Catch and eat any of these fruits : " +
"('apple' ,'orange', 'mango', 'guava')");
[Link]("How many fruits would you like to catch? : ");
int catcher = [Link]();
[Link]("Choose a fruit to catch. Press A, O, M or G");
for(int x = 1; x <= catcher; x++) {
[Link]("Fruit " + x + " of " + catcher + " : ");
}
}
}