Skip to content

Instantly share code, notes, and snippets.

@ivanjx
Created September 24, 2019 12:27
Show Gist options
  • Save ivanjx/e2c169c8d6f127a5c259232ac53d06cf to your computer and use it in GitHub Desktop.
Save ivanjx/e2c169c8d6f127a5c259232ac53d06cf to your computer and use it in GitHub Desktop.
# Dapatkan nilai tinggi badan.
tinggi_badan = int(input('Tinggi badan: '))
# Cek nilai tinggi badan.
if tinggi_badan < 140:
print('Maaf, anda tidak bisa menaiki wahana roller coaster')
else:
print('Selamat menikmati wahana roller coaster!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment