int square(int x) {
	int y = x;
	for (int i = 0; i < x; i++) y += x;
	return y;
}
