yannichen124 avataryannichen12407/14/2021Computers and TechnologyCollegeanswered • expert verifiedRead integers from input and store each integer into a vector until 0 is read. Do not store 0 into the vector. Then, output the values in the vector that are not equal to the last value in the vector, each on a new line.Ex: If the input is -90 -10 22 -10 0, the output is:-9022#include#includeusing namespace std;int main() {/* Your code goes here */return 0;