namespace DSALib.Auxiliary.Calculator { /// /// Object has to be able to return an integer as it's value /// public interface ISolvable { int Solve(); } }