View Code of Problem 87

#include<bits/stdc++.h>
using namespace std;

int main() {
    int a;
    cin>>a;
    int min,max;
    min=a/4;
    max=a/2;
    cout<<min<<" "<<max<<endl;

    return 0;
}

Double click to view unformatted code.


Back to problem 87