algorithms

Algorithm implementations
git clone git://git.laack.co/algorithms.git
Log | Files | Refs | README

solution.cpp (121B)


      1 #include<iostream>
      2 
      3 int main() {
      4     int x,y;
      5     std::cin >> x;
      6     std::cin >> y;
      7     std::cout << x+y << std::endl;
      8 }