Input
Now, knowing that the keyword used to define a block of inputs to the process is inputs, try to
define that our process takes 1 kg of flour as its input. When you are done writing down your guess,
you can open the next section to check your answer:
Solution
Well done!
process my_first_process {
    products {
        1 kg bread
    }
    inputs { // Surprise! I am another block!
        1 kg flour
    }
}