PGSStas

2019.03.19_A

Mar 19th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. #define F first
  4. #define S second
  5. #define ll long long
  6. #define ull unsigned long long
  7. #define ld long double
  8. #define SELO ""
  9. #define openfiles ifstream cin("input"  SELO  ".txt"); ofstream cout("output"  SELO  ".txt");
  10. #define faster ios_base::sync_with_stdio(NULL); cin.tie(0); cout.tie(0);
  11. #define all(x) x.begin(), x.end()
  12.  
  13. using namespace std;
  14.  
  15. int main()
  16. {
  17.     openfiles
  18.     ll l, r;
  19.     cin >> l >> r;
  20.     if(r <= l)
  21.         cout << "First";
  22.     else
  23.         cout << "Second";
  24. }
Advertisement
Add Comment
Please, Sign In to add comment