#include using namespace std; int main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif unsigned long long n; cin >> n; cout << n % (1000000007); }