#include <stdio.h> int main(){ int b, c, d; scanf("%d", &b); for(int i=1;i<=b;i++) { scanf("%d %d", &c, &d); printf("%d\n", c + d); } }