Source Code

#include<bits/stdc++.h>
using namespace std;
int main(){
int x,y,z;
int co=0;
int c1=0,c2=0;
cin>>x>>y>>z;
for(int i=0;;i++){
c1++;
if(c1==y){
  ++co;
  c1=0;
}
if(co==x){
  cout<<i+1;
  exit(0);
}
c2++;
if(c2==z){
  ++co;
  c2=0;
}
if(co==x){
  cout<<i+1;
  exit(0);
}
}
}
Copy
Hurry up hasneen
GNU G++17
1099 ms
388 KB
Time Limit Exceeded