Given a, b, and r, print overflow if a*b exceeds r, otherwise print the product a*b.
Write a program that decides whether the product of two integers aaa and bbb is greater than rrr.
The first line contains the integers aaa, bbb, and rrr, separated by spaces. (0≤a,b≤10200 \le a, b \le 10^{20}0≤a,b≤1020, 0≤r<2630 \le r < 2^{63}0≤r<263)
Except for a value that is 0, no number is given with a leading zero.
If the product of aaa and bbb is greater than rrr, print overflow. Otherwise print the product of aaa and bbb.
overflow