a = int(input())
b = int(input())
c = int(input())
if a>b:
    print("a는 b보다 큽니다")
    print("a의 값은 "+str(a)+"이고 b의 값은 "+str(b)+"입니다")
    if b>c:
        print("b는 c보다 큽니다")
    else:
        print("c는 b보다 큽니다")
    print("b의 값은 "+str(b)+"이고 c의 값은 "+str(c)+"입니다")
elif b>c:
    print("b는 c보다 큽니다")
    print("b의 값은 "+str(b)+"이고 c의 값은 "+str(c)+"입니다")
    if c>a:
        print("c는 a보다 큽니다")
    else:
        print("a는 c보다 큽니다")
    print("c의 값은 "+str(c)+"이고 a의 값은 "+str(a)+"입니다")
elif c>a:
    print("c는 a보다 큽니다")
    print("c의 값은 "+str(c)+"이고 a의 값은 "+str(a)+"입니다")
    if a>b:
        print("a는 b보다 큽니다")
    else:
        print("b는 a보다 큽니다")
    print("a의 값은 "+str(a)+"이고 b의 값은 "+str(b)+"입니다")
else:
    print("a의 값은 "+str(a)+"이고 b의 값은 "+str(b)+"이고 c의 값은 "+str(c)+"입니다")
    

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: