#abc345b. B - Integer Division Returns
B - Integer Division Returns
Score: points
问题陈述
给定一个整数 ,其值在 和 (包括端点)之间,请打印 。 在这里, 表示不小于 的最小整数。
以上为大语言模型 kimi 翻译,仅供参考。
Problem Statement
Given an integer between and , inclusive, print .
Here, denotes the smallest integer not less than .
Constraints
- is an integer.
Input
The input is given from Standard Input in the following format:
Output
Print as an integer.
Sample Input 1
27
Sample Output 1
3
The integers not less than are . Among these, the smallest is , so .
Sample Input 2
-13
Sample Output 2
-1
The integers not less than are all positive integers, , and . Among these, the smallest is , so .
Sample Input 3
40
Sample Output 3
4
The smallest integer not less than is itself.
Sample Input 4
-20
Sample Output 4
-2
Sample Input 5
123456789123456789
Sample Output 5
12345678912345679
update @ 2024/5/16 17:16:40