Advertisement
a53

InvertedColor

a53
Jan 6th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int r,g,b;
  7. cin>>r>>g>>b;
  8. cout<<255-r<<' '<<255-g<<' '<<255-b;
  9. return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement