Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

uri online judge 1930 solution in c++

#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
    int T1, T2, T3, T4;
    cin >> T1 >> T2 >> T3 >> T4;
    cout << (T1 + T2 + T3 + T4) - 3 << endl;
    return 0;
}
Source by www.beecrowd.com.br #
 
PREVIOUS NEXT
Tagged: #uri #online #judge #solution
ADD COMMENT
Topic
Name
6+2 =