#include "iostream.h" using namespace std; int m=10; void a(int n) { n=15/n; m=m/2; } void main() { int n=3; a(n); cout <<"m="<<m<<"n="<<n; }