View Code of Problem 87

#include <stdio.h>

int main()
{
	int x,min,max;
	scanf("%d",&x);
	min = x/4;
	max = x/2;
	printf("%d %d",min,max);
    return 0;
}

Double click to view unformatted code.


Back to problem 87