a = int(input())
print("당신이 입력한 정수는"+str(a)+"입니다")

b = float(input())
print("당신이 입력한 실수는"+str(b)+"입니다")

c = input()
print("당신이 입력한 문자는"+c+"입니다")

d = int(input())
print("당신이 입력한 정수는 %d입니다"%d)

if a > d :
    print("첫번재 정수인 %d가 두번째 정수인 %d보다 큽니다"%(a, d))
else :
    print("첫번재 정수인 %d가 두번째 정수인 %d보다 작거나 같습니다"%(a, d))

Embed on website

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