int main(void) {
  int i;
  double a;

  for(i = 0; i < 100000000; ++i) {
	a = 3.14159265 * i;
  }

  return (char)a;
}
