#include<bits/stdc++.h> using namespace std; int a=40,b=27; void fun(int a,int b){ cout<<a<<' '<<b; } int main(){ fun(a,b); }