Untitled

 avatar
unknown
plain_text
5 months ago
355 B
3
Indexable
// Online C++ compiler to run C++ program online
#include <iostream>
using namespace std;
void shuma(int a, int b)
{
    int shuma = a+b;
    cout<<"Shuma eshte "<<shuma<<endl;
}
int main() {
    int numri1, numri2;
    cout<<"Jep numrin 1"<<endl;
    cin>>numri1;
   cout<<"Jep numrin 2"<<endl;
    cin>>numri2;
    shuma(numri1, numri2);
    return 0;
}
Editor is loading...
Leave a Comment