A very simple approach to solving this problem would be to consider all possible pairs of two workers and then to compute the cost if those two workers were to divide up all the work optimally. Once you had those values, you could just take the smallest of all of them to get the overall smallest cost.
Now, let's see how to compute the total cost of completing all X tasks if you were to use a particular pair of workers. From your problem description it doesn't seem like each worker has a limit as to how much they can do, which makes this substantially easier than many related problems. The intuition is this: for any task, you want to give that task to the worker that can do it cheaper than the other. Consequently, the total cost of divvying up all the tasks between the two workers can be found by looping over every task, then assigning that task to the worker who can do it for less money.
Overall, I would suggest approaching this problem as follows. Using a double for loop, iterate across every pair of workers. For each pair, use a third for loop to iterate over every task, computing the total cost of completing that task. Finally, if this pair is better than the best known pair so far, update your guess to be this particular pair. Once you've run this loop over every pair of workers, you'll have found the pair that can do it for the least total price.
Since there are O(Y2) pairs of workers and X total tasks, this will complete in O(Y2X) time.
Hope this helps!