View Code of Problem 68

#include<cstdio>
int main(){
	int a,b,c;
	scanf("%d %d %d",&a,&b,&c);
	if(a<b)	a=b;
	printf("%d",a>c?a:c);
} 

Double click to view unformatted code.


Back to problem 68