#include<iostream>
using namespace std;
int main(){
int a[5] , b ,s ,o ;
for(int i = 0 ; i<4 ; ++i)
{
cin >> a[i];
}
s= a[1]/a[0] ;
o= a[1]/a[0] ;
for(int j = 0 ; j<4 ; ++j)
{
if(a[j] == j * (a[1] - a[0]) + a[0] )
{
b = 1;
}
else{b = 2 ;}
}
if( b == 2 )
{
for(int k =1 ; k<4 ; ++k)
{
if(a[k] == a[0] *s )
{
s = s*o;
}
else{b = 0; }
}
}
if(b == 1)
{
a[4] =a[3] + a[1] - a[0];
for(int c = 0 ; c<5 ;++c)
{cout<<a[c]<<" ";}
}
if(b == 2)
{
a[4] = a[1]/a[0] * a[3];
for(int p = 0 ; p<5 ;++ p)
{cout<<a[p]<<" ";}
}
return 0 ;
}