View Code of Problem 68

#include<iostream>
#include<algorithm>
using namespace std;
int main(){
	int a,b,c;
	while(cin>>a>>b>>c){
		int ma=max(a,b);
		ma=max(ma,c);
		cout<<ma<<endl;
	}
}

Double click to view unformatted code.


Back to problem 68