#include <stdio.h>
int main()
{
    long long sq1, sq2, sq3;
    long long temp, diff1, diff2;
    
    diff1 = 1;
    diff2 = 2;
    temp = 1;
    sq1 = temp;
    diff1 = diff2 + diff1;
    temp = diff1 + temp;
    sq2 = temp;
    diff1 = diff2 + diff1;
    temp = diff1 + temp;
    sq3 = temp;
    printf("%lld\t%lld\t%lld\n", sq1, sq2, sq3);
    return 0;
}