讲解,C语言 输入2个整数,求两数的平方和并输出.

问题描述:

讲解,C语言 输入2个整数,求两数的平方和并输出.

#include
void main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a * a + b * b);
}