← Back to List
2558번: A+B - 2 ↗
Solutions
C++14
86 B | 86 chars
#include <iostream> using namespace std; int a,b; int main() { cin>>a>>b;cout<<a+b; }