#include #include using namespace std; int dodaj (int,int); double dodaj (double,double); float dodaj (float,float); long dodaj (long,long); int main () { srand ( time(NULL) ); int a=rand()%999,b=rand()%999; double c=rand()%999,d=rand()%999; float e=rand()%999,f=rand()%999; long g=rand()%999,h=rand()%999; cout << "Suma a i b wynosi "<< dodaj (a,b) <