#include <iostream> #include <vector> #define MOD 1000000007 using namespace std; void swap(int& a,int& b) { int temp = a; a = b; b = temp; } int main () { ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); int n,m; cin >> n >> m; if (n < m) swap(n,m);//(n,m)和(m,n)一样,...