Problem in finding Time complexity

Find the time complexity of the following Code : int gcd(int a,int b)
{ if(b==0) return a; else Return gcd(b,a%b); }