import System;
import NS1;

var ayumi : NS1.CMargarita = new NS1.CMargarita();
var asami : NS1.CCappuccino = new NS1.CCappuccino();

Console.WriteLine("ayumiのはきものは" + ayumi.Footware());
Console.WriteLine("asamiのはきものは" + asami.Footware());

package NS1 {
	class CMargarita {
		function Footware() : String { return "ピンヒール"; }
	}
	
	class CCappuccino {
		function Footware() : String { return "ペタンコサンダル"; }
	}
}
