由于题目保证必定有解,所以……
#include<bits/stdc++.h> #define int long long using namespace std; int n,m; signed main(){ cin>>n>>m; cout<<n-m; return 0; }