Skip to content

Instantly share code, notes, and snippets.

@triyono777
Created April 7, 2022 02:31
Show Gist options
  • Save triyono777/0a6bd04d3335db2467de710bc2d35137 to your computer and use it in GitHub Desktop.
Save triyono777/0a6bd04d3335db2467de710bc2d35137 to your computer and use it in GitHub Desktop.
"""
Buatlah program untuk membandingkan
inputan pertama lebih besar atau lebih kecil
dari inputan kedua
"""
a = int(input('masukkan nilai a: '))
b = int(input('masukkan nilai b: '))
if a > b:
print('a lebih besar b')
if a < b:
print('a lebih kecil b')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment