In order to write a test case for a program, I want to calculate the weighted average based on weights $w_i$ and values $X_i$.
Weighted average $W$ is given as
$$ W = \frac{\sum_{i=1}^n w_i*X_i}{\sum_{i=1}^n w_i} $$
I need three distinct weights, $w_1$, $w_2$ and $w_3$ and the sum of these weights must be at least 50.
Is there a solution ${X_i}$ for $w_1=11$, $w_2=22$, $w_3 = 66$ such that all $W, X_i \in \mathbb{N}$?
I'm happy to use any other values for the weights if the given ones in my example have no solution.