#include<iostream.h>
#include<LINK/basic/MSet.h>
#include<LINK/basic/Sequence.h>

main()
{
	int i;

	List<String> l;
	l.append("12"); l.append("13"); l.append("11");

	List<String> l2;
	l2.insert("12"); l2.insert("13"); l2.insert("11");

	if (l == l2)
		cout << l << " == " << l2 << endl;
	if (l <= l2)
		cout << l << " <= " << l2 << endl;
	if (l < l2)
		cout << l << " < " << l2 << endl;
	if (l >= l2)
		cout << l << " >= " << l2 << endl;
	if (l > l2)
		cout << l << " > " << l2 << endl;
	if (l != l2)
		cout << l << " != " << l2 << endl;
}
