Wednesday, July 20, 2016

Published July 20, 2016 by with 0 comment

UVA 13059 Solution

#include<cstdio>
using namespace std;
int main()
{
    long long int  n;
    while (scanf("%lld",&n)!=EOF)
        printf("%lld\n",n-1);
    return 0;
}
      edit

0 comments:

Post a Comment