#Truncate 3 by 2
[in] 3 // 2
[out] 1
#Round up 3 to 2
[in] -(-3//2)
[out] 2
** Impression ** There are times when you want to make the calculation speed as fast as possible in a competition professional. If you call the library one by one, it will become TLE, but if it is only an operator, it is fast. Rounding up is a little confusing, but (-3 // 2) rounds down -3 by 2, so it becomes -2.
Recommended Posts