fork download
  1.  
  2. #include <iostream>
  3. #include <iomanip>
  4. #include<cmath>
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.  
  10.  
  11.  
  12.  
  13. /* double r;
  14.   double pi = 3.141592653;
  15.  
  16.   cin >> r;
  17.   cout << fixed << setprecision(9) << (pi * r * r);
  18.   */
  19.  
  20.  
  21.  
  22. // long long x;
  23. // long long y;
  24. // int a , b;
  25. // cin >> x >> y;
  26. // a = x % 10;
  27. // b = y % 10;
  28. // cout << a + b;
  29.  
  30.  
  31.  
  32. /* long long x, y, n;
  33.   cin >> n >> x >> y;
  34.   cout << n * (y - x) << endl;
  35.   */
  36.  
  37. /*long long x, y;
  38.   cin >> x >> y;
  39.   cout << x / y;
  40.   */
  41.  
  42. /* cout << fixed << setprecision(6);
  43.   double n, r;
  44.   double pi = 3.141592;
  45.  
  46.   cin >> n >> r;
  47.   cout << fixed << setprecision(6) << (pi * r * r) - (n * n);
  48.   */
  49.  
  50. /*double x, y;
  51.   cin >> x >> y;
  52.   long long ans = ceil(x / y);
  53.   cout << ans;
  54.   */
  55. /*long long n;
  56.   cin >> n;
  57.   cout << 0 << " " << 0;
  58.   */
  59.  
  60. /*double a, b;
  61.   cin >> a >> b;
  62.   cout << "floor " << a << " / " << b << " = " << floor(a / b) << endl;
  63.   cout << "ceil " << a << " / " << b << " = " << ceil(a / b) << endl;
  64.   cout << "round " << a << " / " << b << " = " << round(a / b) << endl;
  65.   */
  66.  
  67. /* long long n, sum;
  68.   cin >> n;
  69.   sum = (n * (n + 1)) / 2;
  70.   cout << sum; */
  71.  
  72. /* double a, b, c, x;
  73.   cin >> a >> b >> c;
  74.   x = ((2 * a) + (3 * b)) * (5 * c);
  75.   cout << fixed << setprecision(6) << x;
  76.   */
  77.  
  78.  
  79. /* long long n;
  80.   cin >> n;
  81.   cout << (n/2)+1;
  82.   */
  83.  
  84.  
  85. /* double r;
  86.   double pi = 3.141592;
  87.  
  88.   cin >> r;
  89.  
  90.  
  91.   cout << fixed << setprecision(4) << (pi * r * r) + (0.5 * 2 * r * 1.732050 * r) - ((pi * r * r) / 6);
  92.   */
  93.  
  94.  
  95. /* long long n;
  96.   cin >> n;
  97.  
  98.  
  99.  
  100.   cout << (n/50)+((n%50)/20)+((n%50)%20);
  101.  
  102.   */
  103.  
  104. /* long long n;
  105.   cin >> n;
  106.  
  107.   cout << (n*(n+1)/2)-(n-1);
  108.   */
  109.  
  110.  
  111. /*string x, y;
  112.   cin >> x >> y;
  113.   cout << y << endl;
  114.   cout << x << endl;
  115.   */
  116.  
  117. /*long long n;
  118.   cin >> n;
  119.  
  120.   cout << n % 10;
  121.   */
  122.  
  123.  
  124.  
  125. /*int n;
  126.   cin >> n;
  127.   cout << (n * 4) + 12;
  128.   */
  129.  
  130.  
  131. /*long long n, m, x;
  132.   cin >> n >> m;
  133.   x = (n / m)*m;
  134.   cout << x;
  135.   */
  136.  
  137.  
  138. /*int n;
  139.   cin >> n;
  140.   cout << n - 1;
  141.   */
  142.  
  143.  
  144. /*double a, b, d, x;
  145.   double pi = 3.141592;
  146.   cin >> a >> b;
  147.   d = sqrt(a / pi) * 2;
  148.   x = sqrt(2) * d;
  149.   cout << fixed << setprecision(6) << 0.25 * x * b;
  150.   */
  151.  
  152.  
  153.  
  154. /*long long a, b, t;
  155.   cin >> a >> b >> t;
  156.   cout << (t / a) * b;
  157.   */
  158.  
  159.  
  160. /*long long n, a, b, c, d, e;
  161.   cin >> n;
  162.   a = n / 5;
  163.   b = (n % 5) / 4;
  164.   c = ((n % 5) % 4) / 3;
  165.   d = (((n % 5) % 4) % 3) / 2;
  166.   e = ((((n % 5) % 4) % 3) % 2) / 1;
  167.   cout << a + b + c + d + e;
  168.   */
  169.  
  170. /*string x;
  171.   cin >> x;
  172.   cout << "Hello" << " " << x;
  173.   */
  174.  
  175. /*long long x, y, z, c;
  176.  
  177.   cin >> x >> y >> z;
  178.   c = (x * x) + (y * z);
  179.   cout << c;
  180.   */
  181.  
  182. /*int x, y, temp;
  183.   cin >> x >> y;
  184.   temp = x;
  185.   x = y;
  186.   y = temp;
  187.  
  188.   cout << x << " " << y;
  189.   */
  190.  
  191. /*int x, y;
  192.   cin >> x >> y;
  193.   if (x > y || x == y) {
  194.   cout << "Yes";
  195.   }
  196.   else {
  197.   cout << "No";
  198.   }
  199.   */
  200.  
  201.  
  202. /*int a, b;
  203.   cin >> a >> b;
  204.   if(a%b==0 || b%a==0){
  205.   cout << "Multiples";
  206.   }
  207.   else {
  208.   cout << "No Multiples";
  209.   }
  210.   */
  211.  
  212.  
  213. /*long long a, b, c;
  214.   cin >> a >> b >> c;
  215.   long long minn = a;
  216.   if (b < minn)
  217.   minn = b;
  218.  
  219.   if (c < minn)
  220.   minn = c;
  221.  
  222.   cout << minn << " ";
  223.  
  224.   long long maxx = a;
  225.   if (b > maxx)
  226.   maxx = b;
  227.  
  228.   if (c > maxx)
  229.   maxx = c;
  230.  
  231.   cout << maxx;
  232.   */
  233.  
  234. /*string m, n, x, y;
  235.   cin >> m >> n;
  236.   cin >> x >> y;
  237.  
  238.   if (n == y) {
  239.   cout << "ARE Brothers";
  240.   }
  241.  
  242.   else {
  243.   cout << "NOT";
  244.   }
  245.   */
  246.  
  247.  
  248. /*char t;
  249.   cin >> t;
  250.   if (t >= '0' && t <= '9') {
  251.   cout << "IS DIGIT";
  252.  
  253.   }
  254.   else {
  255.   cout << "ALPHA" << endl;
  256.  
  257.   if (t >= 'A' && t <= 'Z') {
  258.   cout << "IS CAPITAL";
  259.   }
  260.   else{
  261.   cout << "IS SMALL";
  262.   }
  263.  
  264.  
  265.   }
  266.   */
  267.  
  268. /*char c;
  269.   cin >> c;
  270.   if (c >= 'A' && c <= 'Z') {
  271.   cout << char(c + 32) ;
  272.  
  273.   }
  274.   else if (c >= 'a' && c <= 'z') {
  275.   cout << char(c - 32);
  276.   }
  277.   */
  278.  
  279. /*
  280.   long long a, b;
  281.   char s;
  282.   cin >> a >> s >> b;
  283.   if (s == '+') {
  284.   cout << a + b;
  285.   }
  286.   else if (s == '-') {
  287.   cout << a - b;
  288.   }
  289.   else if (s == '*') {
  290.   cout << a * b;
  291.   }
  292.   else if (s == '/') {
  293.   cout << a / b;
  294.   }
  295.   */
  296.  
  297. /*int a;
  298.   cin >> a;
  299.   if (a > 999 && a <= 9999) {
  300.   if ((a / 1000) % 2 == 0) {
  301.   cout << "EVEN";
  302.   }
  303.   else {
  304.   cout << "ODD";
  305.   }
  306.   }
  307.   */
  308.  
  309. /*double a, b;
  310.   cin >> a >> b;
  311.   if (a == 0 && b == 0) {
  312.   cout << "Origem";
  313.   }
  314.   else if (a != 0 && b == 0) {
  315.   cout << "Eixo X";
  316.   }
  317.   else if (a == 0 && b != 0) {
  318.   cout << "Eixo Y";
  319.   }
  320.   else if (a > 0 && b > 0) {
  321.   cout << "Q1";
  322.   }
  323.  
  324.   else if (a < 0 && b > 0) {
  325.   cout << "Q2";
  326.   }
  327.   else if (a < 0 && b < 0) {
  328.   cout << "Q3";
  329.   }
  330.   else if (a > 0 && b < 0) {
  331.   cout << "Q4";
  332.   }
  333.   */
  334.  
  335. /*int y, m, d, r;
  336.   cin >> d;
  337.   y = d / 365;
  338.   m = (d % 365) / 30;
  339.   r = (d % 365) % 30;
  340.   cout << y << " " << "years" << endl;
  341.   cout << m << " " << "months" << endl;
  342.   cout << r << " " << "days" << endl;
  343.   */
  344.  
  345. /*double a;
  346.   cin >> a;
  347.   if (a >= 0 && a <= 25) {
  348.   cout << "Interval" << " " << "[0,25]";
  349.   }
  350.   else if (a > 25 && a <= 50) {
  351.   cout << "Interval" << " " << "(25,50]";
  352.   }
  353.   else if (a > 50 && a <= 75) {
  354.   cout << "Interval" << " " << "(50,75]";
  355.   }
  356.   else if (a > 75 && a <= 100) {
  357.   cout << "Interval" << " " << "(75,100]";
  358.   }
  359.   else {
  360.   cout << "Out of Intervals";
  361.   }
  362.   */
  363.  
  364. /*long long a, b, c;
  365.   cin >> a >> b >> c;
  366.  
  367.   if (a >= b && a >= c) {
  368.   if (b > c) {
  369.   cout << c << endl << b << endl << a << endl;
  370.   }
  371.   else {
  372.   cout << b << endl << c << endl << a << endl;
  373.   }
  374.   }
  375.  
  376.   else if (b >= a && b >= c) {
  377.   if (a > c) {
  378.   cout << c << endl << a << endl << b << endl;
  379.   }
  380.   else {
  381.   cout << a << endl << c << endl << b << endl;
  382.   }
  383.   }
  384.  
  385.   else if (c >= b && c >= a) {
  386.   if (b > a) {
  387.   cout << a << endl << b << endl << c << endl;
  388.   }
  389.   else {
  390.   cout << b << endl << a << endl << c << endl;
  391.   }
  392.   }
  393.   cout << endl << a << endl << b << endl << c << endl;
  394.   */
  395.  
  396. /*double x;
  397.   int y;
  398.   cin >> x;
  399.   y = int(x);
  400.   if (x == y) {
  401.   cout << "int" << " " << x;
  402.   }
  403.  
  404.   else if (x != y) {
  405.   cout << "float" << " " << y << " " << x - y;
  406.   }
  407.   */
  408.  
  409. /*int a, b;
  410.   char c;
  411.   cin >> a >> c >> b;
  412.   if (c == '>') {
  413.   if (a > b) {
  414.   cout << "Right" << endl;
  415.   }
  416.   else {
  417.   cout << "Wrong" << endl;
  418.   }
  419.  
  420.   }
  421.  
  422.   if (c == '<') {
  423.   if (a < b) {
  424.   cout << "Right" << endl;
  425.   }
  426.   else {
  427.   cout << "Wrong" << endl;
  428.   }
  429.  
  430.   }
  431.  
  432.  
  433.   if (c == '=') {
  434.   if (a == b) {
  435.   cout << "Right" << endl;
  436.   }
  437.   else {
  438.   cout << "Wrong" << endl;
  439.   }
  440.  
  441.   }
  442.   */
  443.  
  444. /*int a, b, c;
  445.   char s, r;
  446.   cin >> a >> s >> b >> r >> c ;
  447.   if (s == '+') {
  448.   if (a + b == c) {
  449.   cout << "Yes" << endl;
  450.   }
  451.   else {
  452.   cout << a + b;
  453.   }
  454.  
  455.   }
  456.  
  457.   else if (s == '-') {
  458.   if (a - b == c) {
  459.   cout << "Yes" << endl;
  460.   }
  461.   else {
  462.   cout << a - b;
  463.   }
  464.  
  465.   }
  466.  
  467.   else if (s == '*') {
  468.   if (a * b == c) {
  469.   cout << "Yes" << endl;
  470.   }
  471.   else {
  472.   cout << a * b;
  473.   }
  474.  
  475.   }
  476.   */
  477.  
  478.  
  479. /* long long l1, r1, l2, r2;
  480.   cin >> l1 >> r1 >> l2 >> r2;
  481.   if (l1 <= l2 && r1 >= l2) {
  482.   if (r1 <= r2) {
  483.   cout << l2 << " " << r1;
  484.   }
  485.   else if (r2 <= r1) {
  486.   cout << l2 << " " << r2;
  487.   }
  488.  
  489.   }
  490.  
  491.   else if (l1 >= l2 && l1 <= r2) {
  492.   if (r1 >= r2) {
  493.   cout << l1 << " " << r2;
  494.   }
  495.   else if (l2 <= r2) {
  496.   cout << l1 << " " << r1;
  497.   }
  498.  
  499.   }
  500.  
  501.   else {
  502.   cout << -1;
  503.   }
  504.   */
  505.  
  506.  
  507. /* int x, y, z, l;
  508.   cin >> x >> y >> z >> l;
  509.   x = x % 100;
  510.   y = y % 100;
  511.   z = z % 100;
  512.   l = l % 100;
  513.   long long mul = x * y * z * l;
  514.   int n = mul % 100;
  515.   if (n < 10) {
  516.   cout << 0 << n;
  517.   }
  518.   else {
  519.   cout << n;
  520.   }
  521.   */
  522.  
  523. /*double a, b;
  524.   cin >> a >> b;
  525.   double x = sqrt((a * a) + (b * b));
  526.   double pi = 3.14159;
  527.   double y = (0.25 * (x * x) * pi) * 0.5;
  528.   cout << fixed << setprecision(4) << y;
  529.   */
  530.  
  531. /*int w;
  532.   cin >> w;
  533.   if (w > 2 && w % 2 == 0) {
  534.   cout << "YES" << endl;
  535.   }
  536.  
  537.   else {
  538.   cout << "No" << endl;
  539.   }
  540.   */
  541.  
  542. /* double n, k, a;
  543.   cin >> n >> k >> a;
  544.  
  545.   double x;
  546.   x = (n * k) / a;
  547.  
  548.   if (x <= 2147483647 && x >= -2147483648) {
  549.   if (x == (int)(x)) {
  550.   cout << "int" << endl;
  551.   }
  552.   else if (x != (int)(x)) {
  553.   cout << "double" << endl;
  554.   }
  555.  
  556.   }
  557.  
  558.  
  559.   else if (x > 2147483647 || x < -2147483648) {
  560.  
  561.  
  562.   if (x == (long long)(x)){
  563.  
  564.   cout << "long long" << endl;
  565.   }
  566.   else if (x != (long long)(x)){
  567.   cout << "double" << endl;
  568.   }
  569.  
  570.   }
  571.   */
  572.  
  573.  
  574. /*int x, y;
  575.   cin >> x >> y;
  576.   if (x <= y + 5) {
  577.   cout << "Yes" << endl;
  578.   }
  579.   else {
  580.   cout << "No" << endl;
  581.   }
  582.   */
  583.  
  584.  
  585. /*int n;
  586.   cin >> n;
  587.   if (n >= 95) {
  588.   cout << "A";
  589.   }
  590.   else if (n >= 85 && n < 95) {
  591.   cout << "A-";
  592.   }
  593.   else if (n >= 80 && n < 85) {
  594.   cout << "B";
  595.   }
  596.  
  597.   else if (n >= 75 && n < 80) {
  598.   cout << "B-";
  599.   }
  600.   else if (n >= 70 && n < 75) {
  601.   cout << "C";
  602.   }
  603.   else if (n >= 65 && n < 70) {
  604.   cout << "C-";
  605.   }
  606.   else if (n >= 60 && n < 65) {
  607.   cout << "D";
  608.   }
  609.   else if (n >= 45 && n < 60) {
  610.   cout << "D-";
  611.   }
  612.   else if (n < 45) {
  613.   cout << "F";
  614.   }
  615.   */
  616.  
  617.  
  618. /*int x, y, z;
  619.   cin >> x >> y >> z;
  620.   cout << z << " " << x << " " << y;
  621.   */
  622.  
  623.  
  624. /*ng long x, y;
  625.   cin >> x >> y;
  626.   if(y > 0)
  627.   {
  628.  
  629.  
  630.   cout << x % y;
  631.  
  632.   }
  633.   else {
  634.   cout << -1;
  635.   }
  636.   */
  637.  
  638. /*long long n;
  639.   cin >> n;
  640.   cout << (n)-(n / 7);
  641.   */
  642.  
  643. double n, z, a, b;
  644. cin >> n >> z >> a >> b;
  645. if (a <= n && b <= n) {
  646. if (a != b) {
  647. cout << (abs(a) - abs(b - z));
  648.  
  649. }
  650. }
  651.  
  652.  
  653. /* int n;
  654.   cin >> n;
  655.   if (n == 10){
  656.   cout << 0;
  657. }
  658.  
  659.   else {
  660.   cout << (n / 25) + ((n % 25) / 10) + (((n % 25) % 10) / 5) + ((((n % 25) % 10) % 5) / 1);
  661.   }
  662.   */
  663.  
  664. /*long long a, b, c, d;
  665. cin >> a >> b >> c >> d;
  666. if (b*log(a) > d*log(c)) {
  667.   cout << "YES" << endl;
  668. }
  669. else {
  670.   cout << "NO" << endl;
  671. }
  672. */
  673.  
  674.  
  675.  
  676.  
  677.  
  678.  
  679.  
  680.  
  681.  
  682.  
  683.  
  684.  
  685.  
  686.  
  687.  
  688.  
  689.  
  690.  
  691.  
  692.  
  693.  
  694.  
  695.  
  696.  
  697.  
  698.  
  699. return 0;
  700. }
  701.  
  702.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty