View Code of Problem 68

#include <algorithm>
#include <iostream>
#include <cstdio>
using namespace std;

int main(){
	int a[3];
	cin>>a[0]>>a[1]>>a[2];
	sort(a,a+3);
	cout<<a[2]<<endl;
	return 0;
}

Double click to view unformatted code.


Back to problem 68