Description:
For positive integers N and K return true if N can be represented as a sum of K prime numbers (not necessarily distinct) and false otherwise.
Input 1 : integer n
Input 2 : integer k
Output : boolean
bool primeSum(int n, int k) {
//need an idea!!!
}
Làm sao để kiểm tra số n có thể phân tích thành tổng của k số nguyên tố nhỉ?