Created
December 20, 2017 09:39
-
-
Save you74674/aef5d311595deae5cfb37d2731eb3667 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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