- 2
Write a program that will multiply sum of 5 and 6 by 10.
The answers is 110 how to do it?
4 Antworten
+ 3
print((5+6)*10)
+ 2
print((5+6)*10)
or
print(10*(5+6))
0
Remainder of 1024 divided by 42
0
Write a program that divides 1024 by 42
The answers is 110 how to do it?