View Code of Problem 1

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define PR printf
#define SC scanf
#define D "%d"

int main()
{
	int a, b;
	SC(D D, &a, &b);
	PR(D, a + b);
	return 0;
}

Double click to view unformatted code.


Back to problem 1