print("안녕하세요")
print('안녕하세요')
print("'안녕하세요'")
print('"안녕하세요"')
name = '최보람' ## 대입연산자: =, name=변수
print(name)
print("안녕하세요, "+ name + "님!")
a="10" ##수가 들어간 변수= 숫자형 변수
a=10
b=5
print("합:", a + b)
print("차:", a - b)
print("곱:", a * b) ## *:아스테리크(영문자 x와 헷갈려 사용함.)
print("나눗셈:", a / b) ## /:슬래시
To embed this program on your website, copy the following code and paste it into your website's HTML: