https://codeforces.com/problemset/problem/1521/A
几乎好的数是x%a==0 && x%(a*b)!=0
好的数是x%(a*b)==0
所以如果b==1 那么结果一定不存在
A(a+b)=ABc
a+b=B*c
让c等于1,剩下的数随便分B
当B=2时乘以2 一个分1 一个分3即可。
#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
int main(void)
{
int t; cin>>t;
while(t--)
{
LL a,b; cin>>a>>b;
if(b==1) puts("NO");
else
{
puts("YES");
if(b==2) cout<<a<<" "<<a*3<<" "<<a*b*2<<endl;
else cout<<a<<" "<<a*(b-1)<<" "<<a*b<<endl;
}
}
return 0;
}