usecrate::Solution;usepmath::partition_p;problem!(Problem0076,76,"Counting Summations");implSolution forProblem0076{fnsolve(&self)-> String{// the solution is the number of partitions of 100 minus 1
// because 100 itself is counted as a partition
(partition_p(100)-1).to_string()}}