#include <bits/stdc++.h>
using namespace std;

void hello() { //void:空类型函数。 
	cout << "Hello, World!" << endl;
}


int calc(int a, int b) {
	int sum = a + b;
	return sum;
	// return a + b; (偷懒小妙招)
}

// 比大小 应用函数 
int MAX(int x, int y) {
	if (x > y) {
		return x;
	} else {
		return y;
	}
}

int MIN(int x, int y) {
	if (x > y) {
		return y;
	} else {
		return x;
	}
}

int main() {
	hello();
	int a, b;
	cin >> a >> b;
	cout << "sum:" << calc(a, b) << endl;
	cout << "max:" << MAX(a, b) << endl;
	cout << "min:" << MIN(a, b) << endl;
	return  0;
}