Skip to content
Snippets Groups Projects
Commit c02d74db authored by Minseong Kwon's avatar Minseong Kwon
Browse files

Upload New File

parent 639c30c4
No related branches found
No related tags found
No related merge requests found
print("첫번째 수를 입력하세요")
a=input()
print('두번째 수를 입력하세요')
b=input()
result=int(a)*int(b)
print('{0}*{1}={2}'.format(a,b,result))
print('{0}*{1}={2}'.format(int(a),int(b),result))
print('{0}*{1}={2}'.format(int(a),int(b),str(result)))
print(result)
print(a+"*"+b+"="+str(result))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment