Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
#include <stdio.h>
int main()
{
int a=5, b=2, t=0;
while(a>b)
{
t+=b;
b++;
}
printf("%d %d\n",t,b);
return 0;
}