a = 0.a is less than or equal to sqrt(c), do the following steps:
a. Calculate b_squared = c - a * a.
b. Calculate b = sqrt(b_squared).
c. Check if b is an integer (i.e., b - floor(b) == 0). If it is, return true.
d. Increment a by 1.a is found, return false.