#include <iostream>
using namespace std;

void Hello();	// 函数声明语句
int Count(int num);	// 函数声明语句

void main(){
	Hello();	// 函数调用
	cout << Count(8)<<endl;	// 函数调用
}

void Hello() {	// 函数定义
	cout << "HELLO WORLD." << endl;
}

int Count(int num) {	// 函数定义
	int c_num = 6, i;
	for (i = 5; i > 0; i--) {
		c_num += num;
	}
	
	return c_num;	// 46
}