Facebook
From Smelly Marten, 4 Years ago, written in Plain Text.
This paste is a reply to Untitled from Buff Marten - go back
Embed
Viewing differences between Untitled and Re: Untitled
#include 
using namespace std;
 
int main()
{
    int a,b,suma,iloczyn;
    cout << "podaj dwie  liczby\n";
    cout << "a = ";
    cin >> a;
    cout << "b =";
    cin >> b;
    suma = a + b;
    iloczyn = a * b;
    cout << "a + b = "<< suma <<"\n";
    cout << "a * b = "<< iloczyn <<"\n";  
    return 0;
}