Created
May 30, 2016 23:35
-
-
Save joaogui1/32ee6a9b35506656942daead2ae2fb5c to your computer and use it in GitHub Desktop.
This file contains 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 <bits/stdc++.h> | |
using namespace std; | |
int main(){ | |
int t1,t2,t3,t4; | |
scanf("%d %d %d %d", &t1, &t2, &t3, &t4); | |
printf("%d\n",(t1+t2+t3+t4-3)); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment