輸入描述:
題目沒有任何輸入。
輸出描述:
請輸出所有滿足題目條件的a、b、c的值。 a、b、c之間用空格隔開。 每個輸出占一行。
temp=[[a,b,c]for a in range(10) for b in range (10) for c in range (10)if a*100+b*10+c+b*100+c*10+c==532]#枚舉列表得到需要的值
for s in temp:
for j in s:
print(j,end=' ')#輸出
print()