// ex2.cpp : Defines the entry point for the console application.

#include <iostream>

int total(int value1,int value2) {
    int totalvalue = value1 + value2;
	return totalvalue;
}

int main(int argc, char* argv[])
{
	float a = 4.5;
	int d= 42;
	int e = total(6,7);
	std::cout << "a = " << a <<std::endl;
	std::cout << "d = " << d << " e = " << e << std::endl;
	return 0;
}