#include <iostream>
using namespace std;
int main()
{
    int a,b;
    cin>>a>>b;
    if(a<b)
    {
        int temp;
        temp=a;
        a=b;
        b=temp;
    }
    cout<<a+b<<" "<<a-b<<" "<<a*b<<" "<<a/b<<" "<<a%b;
    return 0;
}