#include <iostream> #include <conio.h> using namespace std; int toplama () { int x,y; cout << "iki sayi girinn"; cin >> x >> y ; return x+y; } main() { cout << toplama(); getch(); return 0; }
#include <iostream> #include <conio.h> using namespace std; int toplama () { int x,y; cout << "iki sayi girinn"; cin >> x >> y ; return x+y; } main() { cout << toplama(); getch(); return 0; }