Codeforces 199A. Hexadecimal's theorem Solution
- Solution in C++:
- ///**********ALLAH IS ALMIGHTY************///
- ///AH Tonmoy
- ///Department of CSE,23rd Batch
- ///Islamic University,Bangladesh
- #include<iostream>
- using namespace std;
- int main()
- {
- long long int n;
- cin>>n;
- if(n==0)
- printf("0 0 0\n");
- else
- printf("0 0 %lld\n",n);
- }
No comments