Created
September 18, 2018 07:44
-
-
Save yunho0130/73cbef38165126cd4d24dcd1db73dc22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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