$calc1 function

int $calc1(
  1. int a,
  2. int b,
  3. int c
)

Implementation

int $calc1(int a, int b, int c) {
  return (a * a - b) ^ c;
}