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