7 lines
90 B
Python
7 lines
90 B
Python
a = "Hej"
|
|
b = "Kalle"
|
|
x = 5
|
|
y = 4
|
|
print ("%s %s" %(a, b))
|
|
print ("%d+%d=%d" %(x, y, x+y))
|