James Tam
Explain why the following program below can't translate to binary.
def fun (num1, num2):
print num1, num2
def start ():
num1 = 123
fun (num1)
[Solution]