Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
9
Task/Integer-comparison/Astro/integer-comparison.astro
Normal file
9
Task/Integer-comparison/Astro/integer-comparison.astro
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
let a = input('Enter value of a: ')
|
||||
let b = 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