| 2 | using namespace std; |
| 3 | |
| 4 | int main() { |
| 5 | long long N; |
| 6 | cin >> N; |
| 7 | if (N % 4 == 0) cout << "Second" << endl; // ���K�� |
| 8 | else cout << "First" << endl; // ���K�� |
| 9 | return 0; |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected