Logged In: YES
user_id=14600

using Remoting.Corba;
namespace Bank
{
public interface Account: ICorbaObject
{
float balance();
}

public interface AccountManager: ICorbaObject
{
Account open(string name);
}
}