Skip to content

Instantly share code, notes, and snippets.

@Rockbet
Last active August 21, 2019 13:32
Show Gist options
  • Save Rockbet/b7c98fcb5c0b51184670d7e531038898 to your computer and use it in GitHub Desktop.
Save Rockbet/b7c98fcb5c0b51184670d7e531038898 to your computer and use it in GitHub Desktop.
// Comentário Noic OBI 2019 - Fase 1 - Programação Nível Júnior
// Dominó
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
cout << ((n+1)*(n+2))/2 << "\n";
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment