Jeremiah_

ABC_127 - A - Ferris Wheel

May 27th, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main () {
  6.   ios::sync_with_stdio(0);
  7.   int a, b;
  8.   cin >> a >> b;
  9.   if (a < 6) cout << "0\n";
  10.   else if (a < 13) cout << b/2 << endl;
  11.   else cout << b << endl;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment