#include <stdio.h> int main() { long a=10,b=1,c=1; for(int i=2;i<=30;i++) { a=a+10; b=b*2; c=c+b; } printf("%ld %ld",a,c); return 0; }