Integers (int
s) in Python are written without a decimal point. Unlike integers in Java, there is no
limit to the size of a Python integer.
The +
, -
, *
, and %
operators are the same as in Java. Integer
division (also called flooring division, which rounds its result down to the nearest integer) is written
//
to distinguish it from ordinary division. Python also has the **
operator for raising
a number to a power.
Fill in the placeholders so that the actual outputs match the expected outputs.