Toj 1607

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<stdio.

h>
#include<stdlib.h>
int main()
{
freopen("entrada.txt","r",stdin);
freopen("salida.txt","w",stdout);
int a,b,c,d,dif;
scanf("%d%d%d%d",&a,&b,&c,&d);
if((a>=1 && a<=10000)&&(b>=1 && b<=10000)&&(c>=1 && c<=10000)&&(d>=1 && d<=10
000)){
if(a<c){
while(a<c){
a+=b;
c-=d;
}
if(a==c) printf("%d",c);
else {
a-=b;
c+=d;
dif=c-a;
if(dif<b && b>d)printf("%d",c);
else printf("%d",a+b);
}
}
else printf("%d",a);
}
return 0;
}

You might also like