题号:NC52845
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 32 M,其他语言64 M
Special Judge, 64bit IO Format: %lld
题目描述
Given a and b which both fit in 64-bit signed integers, find

where

denotes the largest integer which is not larger than x.
输入描述:
The input contains zero or more test cases and is terminated by end-of-file.
Each test case contains two integers a, b.
* 
* 
* The number of tests cases does not exceed
.
输出描述:
For each case, output an integer which denotes the result.
示例1
输入
复制
3 2
3 -2
-9223372036854775808 1
-9223372036854775808 -1
输出
复制
1
-2
-9223372036854775808
9223372036854775808