public class ParameterChanger {
  public void weird(int i) {
    i *= 10;
  }

  public int smarter(int i) {
    return i * 10;
  }
}
