fork download
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4.  
  5. int main () {
  6. int n,m,c;
  7. cin >> n;
  8. m=n%100;
  9. c=m%20;
  10. if (m>65 && m<=99) {
  11. cout << ((n/100+1)*100);
  12. }
  13. else
  14. if (c>15 && c<=19) {
  15. cout << ((n/100)*100)+(((n/10%10)/2)*30)+30;
  16. }
  17. else
  18. cout << ((n/100)*100)+((((n/10%10)/2)*30)+(((n%10)+((n/10%10)%2)*10))*2);
  19. return 0;
  20. }
Success #stdin #stdout 0s 3416KB
stdin
16
stdout
30