提交时间:2019-09-20 20:40:58
运行 ID: 511
#include<iostream> int main(){ int a,b,c,d,e,f,g,h; scanf("%d %d %d",&a,&b,&c); d=a/3; e=(b+d)/3; f=(c+e+d)/3; g=d+e+f; h=e+f; printf("%d %d %d",g,h,f); return 0; }