Search posts...
class Solution { public int solution(int a, int b) { String aa = ""+a+b; return Math.max(Integer.parseInt(aa),2*a*b); } }
silver