#include <linux/module.h>
int init_module(void)
{
	printk("Hello...\n");
	return 0;
}
void cleanup_module(void)
{
	printk("World...\n");
}

