A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
10
Task/Integer-comparison/Python/integer-comparison-1.py
Normal file
10
Task/Integer-comparison/Python/integer-comparison-1.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
a = int(raw_input('Enter value of a: '))
|
||||
b = int(raw_input('Enter value of b: '))
|
||||
|
||||
if a < b:
|
||||
print 'a is less than b'
|
||||
elif a > b:
|
||||
print 'a is greater than b'
|
||||
elif a == b:
|
||||
print 'a is equal to b'
|
||||
Loading…
Add table
Add a link
Reference in a new issue