package xmp_cfunc;

public class Cfunc {
	static double area(double w,double h) {
		return w * h;
	}
}
