﻿from lycee import *

def image(a,b) :
    x=sqrt(a)
    y=sqrt(b)
    if x<y :
        return "sqrt(a)<sqrt(b)"
    else :
        return "sqrt(a)>=sqrt(b)"

