Pagini recente » Cod sursa (job #653823) | Cod sursa (job #607932) | Cod sursa (job #1571308) | Cod sursa (job #305292) | Cod sursa (job #2698222)
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
#include <fstream>
#include <math.h>
using namespace std;
ifstream fin ("fractii.in");
ofstream fout ("fractii.out");
int
main ()
{
int N, s = 0;
fin >> N;
for (int c = 1; c <= N; c++)
for (int i = 2; i <= N; i++)
{
if (c % i != 0)
s++;
if (c == 1)
s++;
}
fout << s;
return 0;
}