#include <iostream> using namespace std; int main() { int a, b, c; cin >> a; cin >> b; cin >> c; // write your code here...... int max; max=(a>b?a:b)>c?(a>b?a:b):c; cout<<max<<endl; return 0; }