print("===계산기===") a = int(input('첫 번째 숫자: ')) b = int(input('두 번째 숫자: ')) print("덧셈 결과 : ", a+b) print("뺄셈 결과 : ", a-b) print("곱셈 결과 : ", a*b) print("나눗셈 결과 : ", a/b)
To embed this project on your website, copy the following code and paste it into your website's HTML: