| 8 | */ |
| 9 | |
| 10 | signed main() { |
| 11 | int n; |
| 12 | cin >> n; |
| 13 | const int mod = 1e9 + 7; |
| 14 | int ans = 1; |
| 15 | for(int i = 0; i < n; i++) { |
| 16 | ans *= 2; |
| 17 | ans %= mod; |
| 18 | } |
| 19 | cout << ans <<"\n"; |
| 20 | return 0; |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected