Problems
Sum of squares
Sum of squares
Find the sum of the squares of two numbers.
Input data
Two integers a and b. The numbers do not exceed 10^9
by absolute value.
Output data
Print a single integer a^2
+ b^2
.
Examples
Input example #1
2 3
Output example #1
13