Skip to content

Instantly share code, notes, and snippets.

@johnsi15
Last active July 4, 2016 19:21
Show Gist options
  • Save johnsi15/d5295567e4cfdf5c673a9e0b337f5375 to your computer and use it in GitHub Desktop.
Save johnsi15/d5295567e4cfdf5c673a9e0b337f5375 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
print "area del rectangulo"
b = int(raw_input("base"))
h = int(raw_input("altura"))
c = b * h
print "el area es %s" % c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment