#include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); unsigned long long n; cin >> n; cout << n % 1000000007 << '\n'; return 0; }