#include using namespace std; void print(int a) { cout << a << endl; } int main() { int a,b; a = 6; b = 7; print(a); print(b); print(8); return 0; }