Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2127 | 候震轩 | [在线测评解答教程] A+B Problem | C++ | Wrong Answer | 0 MS | 264 KB | 164 | 2023-12-16 14:42:37 |
#include <iostream> using namespace std; int main(){ int age=20; cout<<age<<endl; int a; int b; cin>>a>>b; cout<<a+b*b+a*b<<endl; return 0; }
------Input------
84 87
------Answer-----
171
------Your output-----
20 14961