Bijele

Question

Solution

Idea

This is a question for a brand-new beginner 😂. Nothing to say.

Code

https://github.com/mendax1234/Coding-Problems/blob/main/kattis/bijele/bijele.c
#include <stdio.h>

int main()
{
  int a1, a2, a3, a4, a5, a6;
  scanf("%d %d %d %d %d %d", &a1, &a2, &a3, &a4, &a5, &a6);
  printf("%d %d %d %d %d %d\n", 1-a1, 1-a2, 2-a3, 2-a4, 2-a5, 8-a6);
}

Last updated