// Test invalid operations

// 1st op is an integer an second a set
10+{3};
10-{3};
10*{3};
10/{3};
10%{3};

// 1st op is a set and second an int
{1,2}+10;
{1,2}-10;
{0,1}*3;
{0,1}/3;
{0,1}%3;

// Invalid set operations
{0,1}/{3};
{0,1}%{3};