import java.io.*;

public class test_8 {
  int x = 10;
  static String s = "hello world";
  byte b = 3;
  public static void main(String [] args){
    System.out.println(s);
    int i;
    for(i = 0; i < 100000; i++){
      test_8 h = new test_8();
      h.foo(100,(byte)1,i);
    }
  }
  void foo(int xx,byte bb,int i){
    System.out.println("foo x="+x+xx+b+bb+i);
  }
}
