Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<bits/stdc++.h>
- using namespace std;
- int main()
- {
- int n,t;
- cin>>t;
- while(t--)
- {
- int n;
- cin>>n;
- if(n>=10)
- {
- cout<<10<<" "<<(n-10)<<endl;;
- }
- else
- {
- cout<<0<<" "<<n<<endl;;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement