Skip to content

Instantly share code, notes, and snippets.

@you74674
Created December 20, 2017 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save you74674/aef5d311595deae5cfb37d2731eb3667 to your computer and use it in GitHub Desktop.
Save you74674/aef5d311595deae5cfb37d2731eb3667 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include "coord.h"
int main()
{
for(coord a, b, c; scanf("%d %d %d %d", &(a.a), &(a.b), &(b.a), &(b.b))!=EOF; )
{
c=add(a, b);
print(c);
printf("\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment