Skip to content

Instantly share code, notes, and snippets.

@gun007
Created October 25, 2018 20:09
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 gun007/ac0d363f4cd1da2921901e465dd8ffc8 to your computer and use it in GitHub Desktop.
Save gun007/ac0d363f4cd1da2921901e465dd8ffc8 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
# -*- coding: latin1 -*-
a = input ("insira o valor A ");
b = input ("insira o valor B ");
c = input ("insira o valor C ");
if (a<b and a<c):
print "menor",a
if(b<a and b<c):
print "menor",b
if(c<a and c<b):
print "menor",c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment