You are given a number N and a number X. Create a program that multiplies N * X if X is greater than or equal to N and divides N / X if N is greater than X.
Examples:
Input
|
Output
|
|
Input
|
Output
|
|
Input
|
Output
|
|
Input
|
Output
|
2
3
|
6
|
|
13
13
|
169
|
3
2
|
1.5
|
144
12
|
12
|