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