10077: ABC345 —— B - Integer Division Returns
[Creator : ]
Description
Given an integer $X$ between $-10^{18}$ and $10^{18}$, inclusive, print $\left\lceil \dfrac{X}{10} \right\rceil$.
Here, $\left\lceil a \right\rceil$ denotes the smallest integer not less than $a$.
Here, $\left\lceil a \right\rceil$ denotes the smallest integer not less than $a$.
Input
The input is given from Standard Input in the following format:
```
$X$
```
```
$X$
```
Output
Print $\left\lceil \dfrac{X}{10} \right\rceil$ as an integer.
Constraints
- $-10^{18} \leq X \leq 10^{18}$
- $X$ is an integer.
- $X$ is an integer.
Sample 1 Input
27
Sample 1 Output
3
The integers not less than $\frac{27}{10}=2.7$ are 3,4,5,…3,4,5,…. Among these, the smallest is 3, so $⌈\frac{27}{10}⌉=3$.
Sample 2 Input
-13
Sample 2 Output
-1
The integers not less than $\frac{−13}{10}=−1.3$ are all positive integers, 0, and -1. Among these, the smallest is -1, so $⌈\frac{−13}{10}⌉=−1$.
Sample 3 Input
40
Sample 3 Output
4
The smallest integer not less than $\frac{40}{10}=4$ is 4 itself.
-20
-2
Sample 4 Input
123456789123456789
Sample 4 Output
12345678912345679