A Piecewise Expression


Submit solution

Points: 100
Time limit: 2.0s
Memory limit: 256M

Author:
Problem types

Given integers \(a,b,c\), compute \(y=a^2+3a-1\) when \(b<=c\); otherwise compute \(y=0\).

Input

Three lines contain \(a,b,c\), in that order.

Output

Print the legacy prompts followed by \(y\), exactly as shown in the example.

Example

Input
1
2
3
Output
Nhap a = Nhap b = Nhap c = Y = 3

Comments

There are no comments at the moment.