[cpp]
#include
using namespace std;
void sneezy(int &x)
{
x += 20;
}
int main()
{
int times = 20;
sneezy(times);
cout <
}
#include
using namespace std;
void sneezy(int &x)
{
x += 20;
}
int main()
{
int times = 20;
sneezy(times);
cout <
}