You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
698 B
68 lines
698 B
# H
|
|
beeps = 2
|
|
boops = 6
|
|
total = beeps + boops
|
|
print(total)
|
|
|
|
# E
|
|
beeps = 0
|
|
boops = 5
|
|
total = beeps + boops
|
|
print(total)
|
|
|
|
# L
|
|
beeps = 9
|
|
boops = 3
|
|
total = beeps + boops
|
|
print(total)
|
|
|
|
# L
|
|
beeps = 4
|
|
boops = 8
|
|
total = beeps + boops
|
|
print(total)
|
|
|
|
# O
|
|
beeps = 10
|
|
boops = 5
|
|
total = beeps + boops
|
|
print(total)
|
|
|
|
# SPACE
|
|
|
|
# W
|
|
beeps = 11
|
|
boops = 12
|
|
total = beeps + boops
|
|
print(total)
|
|
|
|
# O
|
|
beeps = 5
|
|
boops = 5
|
|
total = beeps + boops
|
|
print(total)
|
|
|
|
# R
|
|
beeps = 1
|
|
boops = 17
|
|
total = beeps + boops
|
|
print(total)
|
|
|
|
# L
|
|
beeps = 5
|
|
boops = 7
|
|
total = beeps + boops
|
|
print(total)
|
|
|
|
# D
|
|
beeps = 4
|
|
boops = 0
|
|
total = beeps + boops
|
|
print(total)
|
|
|
|
# Full text:
|
|
# HELLO WORLD
|
|
|
|
# Numbers printed:
|
|
# 8, 5, 12, 12, 15, 23, 15, 18, 12, 4
|