sum_sqr.cpp 107 B

12345
  1. extern "C" int mul(int x,int y);
  2. extern "C" int sum_sqr(int x, int y) {
  3. return mul(x, x) + mul(y, y);
  4. }