I know we haven't been doing much of these C++ Community problems so I though I'd write one up to get it started once again.
Problem Statement: For some integer v,w,x,y,z
find all solution to the following equation
1 1 1 1 1
- + - + - + - + - = 1
v w x y z
For example one solution is v = w = x = y = z = 5
, find the rest. If there are none the prove it with your code or some algebra. Happy coding fellas.