Note: For C++ languages, the memory limit is 100 MB. For other languages, the memory limit is 200 MB.
In graph theory, an independent set is a set of nonadjacent vertices in a graph. Moreover, an independent set is maximum if it has the maximum cardinality (in this case, the number of vertices) across all independent sets in a graph.
An induced subgraph G'(V', E') of a graph G(V, E) is a graph that satisfies:
*
* edge
%20%5Cin%20E')
if and only if

, and edge
%20%5Cin%20E)
;
Now, given an undirected unweighted graph consisting of n vertices and m edges. This problem is about the cardinality of the maximum independent set of each of the

possible induced subgraphs of the given graph. Please calculate the sum of the

such cardinalities.