Implement a class Bug that models a bug climbing up a pole. Each time the up method is called, the bug climbs 10 cm. Whenever it reaches the top of the pole (at 100 cm), it slides back to the bottom. Provide a method getPosition that returns the current position. Complete the following file Bug.java 1 public class Bug 3 4 private int position; 5 I/ Provide the getPosition and up methods Submit