문제

링크

풀이

#include <stdio.h>
 
int main(void) {
  int a, b, c, d, e, f;
  
  scanf("%d %d %d %d %d %d", &a, &b, &c, &d, &e, &f);
  printf("%d %d %d %d %d %d", 1-a, 1-b, 2-c, 2-d, 2-e, 8-f);
  return 0;
}