Untitled
Anonymous
plain_text
07/03/2024 9:06 AM
240 B
15
Indexable
#include <iostream>
using namespace std;
int add(int A, int B){
return A+B;
}
int main(){
int A, B;
cin>>A>>B;
cout<<"X+Y="<<add(A,B)<<endl;
return 0;
}
Editor is loading...
Leave a Comment