View Code of Problem 87

#include <stdio.h>
#include <string.h>
#include <math.h>
#define N 100
int main()
{
	int j,t;
	int min,max;
	int n;
	scanf("%d",&n);
	min=n/4;
	max=n/2;
	printf("%d %d",min,max);
}

Double click to view unformatted code.


Back to problem 87