eolymp
Competitions

Week 1 Introduction Part 1

Sum of squares

Time limit 1 second
Memory limit 128 MiB

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