Problem F: 计算与变量-计算算式结果

Problem F: 计算与变量-计算算式结果

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 3705  Solved: 2369
[Status] [Submit] [Creator:]

Description

把下面的代码复制下来,在横线上补充完整程序,
完成计算a*a+2*a*b+b*b的值
将完整代码提交即可。

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int a=3,b=4;
    cout<<______________;
return 0;
}

Sample Input Copy

Sample Output Copy

49