summaryrefslogtreecommitdiff
path: root/progs/a540.py
blob: ebc10f091dda103fc63dd1f6907ada7080ad182b (plain)
1
2
3
4
5
def answer(L,R): 
    if (2 * L <= R): 
        return (L ,2*L)
    else: 
        return (-1)