Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

#include<cstdlib>

#include<iostream>

using namespace std;

int confunsion (int x,int y){

x= 2*x+y;

return x;

int main ()

int x=2,y=5;

y=confusion (y,x);

x=confusion (y,x);

cout<<x;

cout<<y;

system("pause");

return 0;

You might also like