Skip to content

Instantly share code, notes, and snippets.

@yunho0130
Created September 18, 2018 07:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yunho0130/73cbef38165126cd4d24dcd1db73dc22 to your computer and use it in GitHub Desktop.
Save yunho0130/73cbef38165126cd4d24dcd1db73dc22 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
"""
Created on Tue Sep 18 16:25:52 2018
@author: HDC_USER
"""
print "Multiple Calculator"
num1 = raw_input("Input 1: ")
num2 = raw_input("Input 2: ")
print int(num1)*int(num2)
# print "result: {}".format(int(input_val_1)*int(input_val_2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment