Untitled
unknown
c_cpp
2 years ago
261 B
8
Indexable
#include <string>
#include <iostream>
#include<windows.h>
using namespace std;
void g(int a, int b)
{
int s = a;
int k = b;
int c = 0;
c = k;
k = s;
s = c;
cout << "SUCCESFUL";
}
int main()
{
int a, b; cin >> a >> b; g(a, b);
}Editor is loading...
Leave a Comment