1 #include<iostream>
 2 #include<stdio.h>
 3 using namespace std;
 4 
 5 int main()
 6 {
 7     //freopen("acm.acm","r",stdin);
 8     int f_0;
 9     int f_1;
10     int f_2;
11     while(cin>>f_0>>f_1>>f_2)
12     {
13         cout<<3*f_2 - 3*f_1 + f_0<<" "<<6*f_2 - 8 * f_1 + 3*f_0<<" "<<10*f_2 - 15*f_1+6*f_0<<endl;
14     }
15 }

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-11
  • 2022-01-30
  • 2021-05-26
  • 2022-12-23
  • 2022-01-19
猜你喜欢
  • 2021-07-20
  • 2021-11-08
  • 2021-11-11
  • 2021-11-25
  • 2022-12-23
  • 2021-08-11
  • 2021-09-19
相关资源
相似解决方案