Get me outta here!

Thursday, May 26, 2022

Calculate easy way (My created easy problem- Codeforces Style)

 

Solution

#include<iostream>

using namespace std;

int main()

{

    int n,p;

    cin>>n>>p;

    if(n>p)

    {

        while(n%10!=0)

        {

            n++;

            p--;

        }

        cout<<n<<" "<<p;

    }

    else if(p>n)

    {

        while(p%10!=0)

        {

            p++;

            n--;

        }

        cout<<n<<" "<<p;

    }

}


0 comments:

Post a Comment