#include <stdio.h>

int square(int arg)
{
	return (arg*arg);
}
