#2442. 代码填空题2

代码填空题2

代码填空,实现以下功能。

已知:长方形的长是8米,宽是4米,求长方形的周长是多少米?

#include <iostream>
using namespace std;
int main()
{
     int a,b,c;
     a=8;
     b=4;
     c=(a__①__b)*__②__;
     cout<<c;
     return 0;
}

注意:填写内容里不要加空格!!!

① {{ input(1) }}

② {{ input(2) }}