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