View Code of Problem 113

#include<string.h>
#include<stdio.h>
int main(){
	int n,m;	
	while(scanf("%d %d",&n,&m)!=EOF){		
		printf("%d\n",m+n);
		printf("\n");
	}	
} 












Double click to view unformatted code.


Back to problem 113