UOJ Logo

NOI.AC

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#170437#1221. 阴影面积(1)mengxiangjia1000ms1196kbC++124b2023-04-28 23:23:272023-04-28 23:23:29

answer

#include <iostream>
using namespace std;
int main()
{
    int a,b;
    cin>>a>>b;
    cout<<a*a-b*b;
    return 0;
}

Details

小提示:点击横条可展开更详细的信息

Test #1:

score: 50
Accepted
time: 0ms
memory: 1196kb

input:

5 3

output:

16

result:

ok single line: '16'

Test #2:

score: 50
Accepted
time: 0ms
memory: 1196kb

input:

15 13

output:

56

result:

ok single line: '56'