class E {
  public static void main(String args[]) {
    int i = 9;
    String j = Integer.toString(i);
    System.out.println(j);
  }
}